productCounts query limitation

Hi folks - happy to share that as of the 2025-07 API release, we now support uncapped counts in GraphQL across all count APIs.

This did require a breaking change to how limits work, in 2025-07 the default is 10K, and you have to pass in null to the limit argument to get uncapped counts.

query {
  productsCount(limit: null) {
    count
    precision
  }
}
5 Likes