Product type and product tags are always have “false” in pageInfo - hasNextPage, but if I increase the “first” parameter I can get more nodes.
query ShopProductTagsQuery($first: Int!) {
shop {
productTags(first: $first) {
edges {
cursor
node
}
pageInfo {
hasNextPage
endCursor
}
}
}
}