Graphql admin api

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
            }
          }
        }
    }

Having the exact same problem, yet I see no responses from anyone on what causes this. My app is broken because of this “hasNextPage” issue ;(