Need a feature in the Dev Dashboard for logging

Filter the Grapql Request by API Version and Deprecated Calls in Logs Section

Thanks @Aristo_Vince, I’ve passed this along on your behalf.

In the meantime, you can currently capture both of those data points on your own end by logging the response headers from each GraphQL request.

Every response includes an X-Shopify-API-Version header that tells you which version actually fulfilled the request. If that differs from what you specified, your app is targeting an inaccessible version and we’ve fallen forward to the default, so logging that header gives you the per-request version data to filter on. You can read more about how that works in our API versioning docs.

For deprecated calls, the X-Shopify-API-Deprecated-Reason response header flags any deprecated fields or types in that request. As of 2025-04, it returns the actual deprecated field names (for example, Shop.products, Shop.productVariants) instead of a generic URL, so you can log and group by those values. The changelog on that change is here.