Starting Feb 1, 2025, Shopify admin action links for products and variants will no longer load the entire resource from Shopify’s REST API. Instead, only the resource ID and its GraphQL API ID will be returned due to the Shopify REST deprecation.
Example of the New Payload
{
"id": 123456,
"admin_graphql_api_id": "gid://shopify/Product/123456"
}
What does this mean?
- If you rely on additional fields (like title, vendor, etc.), you must fetch those via the Shopify GraphQL API.
- If you only need the ID then no change is required.