I’m trying to query customerTags based on specific title, but the query argument is not available in the GraphQL Admin API. While inspecting Shopify’s admin panel, I noticed that Shopify uses a query named customerTagsV2, but this does not appear in the API documentation.
Additionally, when attempting to paginate customerTags, I noticed the following issues:
The customerTags query does not support the after argument, meaning I cann’t use endCursor for pagination.
The response always returns hasNextPage: false, even when there are more tags than the first value specified in the query.
Is there an alternative way to retrieve customer tags with pagination or filter them based on the title?