Version: 2024-10
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query ImageMetafield($variant: ID!, $namespace: String!, $key: String!) { productVariant(id: $variant) { image { attribution: metafield(namespace: $namespace, key: $key) { value } } } }\",\n \"variables\": {\n \"namespace\": \"my_fields\",\n \"key\": \"attribution\",\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query ImageMetafield($variant: ID!, $namespace: String!, $key: String!) {\n productVariant(id: $variant) {\n image {\n attribution: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n }\n }`,\n \"variables\": {\n \"namespace\": \"my_fields\",\n \"key\": \"attribution\",\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n query ImageMetafield($variant: ID!, $namespace: String!, $key: String!) {\n productVariant(id: $variant) {\n image {\n attribution: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n }\n }\nQUERY\n\nvariables = {\n \"namespace\": \"my_fields\",\n \"key\": \"attribution\",\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<\"my_fields\",\n \"key\" => \"attribution\",\n \"variant\" => \"gid://shopify/ProductVariant/43729076\",\n];\n\n$response = $client->query([\"query\" => $query, \"variables\" => $variables]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query ImageMetafield($variant: ID!, $namespace: String!, $key: String!) {\n productVariant(id: $variant) {\n image {\n attribution: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n }\n }`,\n {\n variables: {\n \"namespace\": \"my_fields\",\n \"key\": \"attribution\",\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query ImageMetafield($variant: ID!, $namespace: String!, $key: String!) {\n productVariant(id: $variant) {\n image {\n attribution: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n }\n}"
input: { "namespace": "my_fields", "key": "attribution", "variant": "gid://shopify/ProductVariant/43729076" }
response: { "data": { "productVariant": { "image": { "attribution": { "value": "snowdevil street photography" } } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query ImageMetafields($variant: ID!) { productVariant(id: $variant) { image { metafields(first: 3) { edges { node { namespace key value } } } } } }\",\n \"variables\": {\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query ImageMetafields($variant: ID!) {\n productVariant(id: $variant) {\n image {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\n }\n }\n }`,\n \"variables\": {\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n query ImageMetafields($variant: ID!) {\n productVariant(id: $variant) {\n image {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\n }\n }\n }\nQUERY\n\nvariables = {\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<\"gid://shopify/ProductVariant/43729076\",\n];\n\n$response = $client->query([\"query\" => $query, \"variables\" => $variables]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query ImageMetafields($variant: ID!) {\n productVariant(id: $variant) {\n image {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\n }\n }\n }`,\n {\n variables: {\n \"variant\": \"gid://shopify/ProductVariant/43729076\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query ImageMetafields($variant: ID!) {\n productVariant(id: $variant) {\n image {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\n }\n }\n}"
input: { "variant": "gid://shopify/ProductVariant/43729076" }
response: { "data": { "productVariant": { "image": { "metafields": { "edges": [ { "node": { "namespace": "my_fields", "key": "attribution", "value": "snowdevil street photography" } } ] } } } } }