Version: unstable
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Storefront-Access-Token: {storefront_access_token}' \\\n-d '{\n\"query\": \"query getProductVariantsFromNode($id: ID!) { node(id: $id) { id ... on Product { variants(first: 5) { edges { node { id } } } } } }\"\n}'\n" Node example: "const client = new shopify.clients.Storefront({\n domain: 'your-development-store.myshopify.com',\n storefrontAccessToken,\n});\nconst data = await client.query({\n data: `query getProductVariantsFromNode($id: ID!) {\n node(id: $id) {\n id\n ... on Product {\n variants(first: 5) {\n edges {\n node {\n id\n }\n }\n }\n }\n }\n }`,\n});\n" Ruby example: null PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new ShopifyClientsStorefront(\"your-development-store.myshopify.com\", $storefrontAccessToken);\n$query = <<<QUERY\n query getProductVariantsFromNode($id: ID!) {\n node(id: $id) {\n id\n ... on Product {\n variants(first: 5) {\n edges {\n node {\n id\n }\n }\n }\n }\n }\n }\nQUERY;\n\n$response = $client->query([\"query\" => $query]);\n" Remix example: "const { storefront } = await unauthenticated.storefront(\n 'your-development-store.myshopify.com'\n);\n\nconst response = await storefront.graphql(\n `#graphql\n query getProductVariantsFromNode($id: ID!) {\n node(id: $id) {\n id\n ... on Product {\n variants(first: 5) {\n edges {\n node {\n id\n }\n }\n }\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query getProductVariantsFromNode($id: ID!) {\n node(id: $id) {\n id\n ... on Product {\n variants(first: 5) {\n edges {\n node {\n id\n }\n }\n }\n }\n }\n}"
input: null
response: { "data": { "node": { "id": "gid://shopify/ProductVariant/1001658048" } } }