Hi,
I’d like to report an issue related to the Shopify GraphQL API version 2025-07.
I’m running the following query:
{
webhookSubscriptions(first: 100) {
nodes {
id
topic
filter
endpoint {
... on WebhookHttpEndpoint {
callbackUrl
}
}
}
}
}
In response, I receive the following header:
x-shopify-api-deprecated-reason: WebhookSubscription.endpoint
According to the documentation (link), the current endpoint field is deprecated and is supposed to be replaced by a new uri field, which will only be available in API version 2025-10.
Right now, I can’t update to the future API version, as 2025-10 isn’t publicly available yet. However, I’m already getting warnings and errors in my logs about the deprecated field, which creates unnecessary noise and makes it harder to spot real issues.
In my opinion, the deprecation warning should only be triggered once version 2025-10 (with the uri field) is officially released, not already in 2025-07, since there’s currently no alternative available.
Could you please verify this?
Thanks!