Version: 2025-01
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2025-01/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query BlogShow($id: ID!) { blog(id: $id) { id title handle } }\",\n \"variables\": {\n \"id\": \"gid://shopify/Blog/397675442\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query BlogShow($id: ID!) {\n blog(id: $id) {\n id\n title\n handle\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/Blog/397675442\"\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 BlogShow($id: ID!) {\n blog(id: $id) {\n id\n title\n handle\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/Blog/397675442\"\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 = <<<QUERY\n query BlogShow($id: ID!) {\n blog(id: $id) {\n id\n title\n handle\n }\n }\nQUERY;\n\n$variables = [\n \"id\" => \"gid://shopify/Blog/397675442\",\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 BlogShow($id: ID!) {\n blog(id: $id) {\n id\n title\n handle\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/Blog/397675442\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query BlogShow($id: ID!) {\n blog(id: $id) {\n id\n title\n handle\n }\n}"
input: { "id": "gid://shopify/Blog/397675442" }
response: { "data": { "blog": { "id": "gid://shopify/Blog/397675442", "title": "Yo Blog", "handle": "smallcheese-blog" } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2025-01/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query BlogArticleCount($id: ID!) { blog(id: $id) { articlesCount { count precision } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/Blog/397675442\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query BlogArticleCount($id: ID!) {\n blog(id: $id) {\n articlesCount {\n count\n precision\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/Blog/397675442\"\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 BlogArticleCount($id: ID!) {\n blog(id: $id) {\n articlesCount {\n count\n precision\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/Blog/397675442\"\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 = <<<QUERY\n query BlogArticleCount($id: ID!) {\n blog(id: $id) {\n articlesCount {\n count\n precision\n }\n }\n }\nQUERY;\n\n$variables = [\n \"id\" => \"gid://shopify/Blog/397675442\",\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 BlogArticleCount($id: ID!) {\n blog(id: $id) {\n articlesCount {\n count\n precision\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/Blog/397675442\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query BlogArticleCount($id: ID!) {\n blog(id: $id) {\n articlesCount {\n count\n precision\n }\n }\n}"
input: { "id": "gid://shopify/Blog/397675442" }
response: { "data": { "blog": { "articlesCount": { "count": 1, "precision": "EXACT" } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2025-01/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query BlogArticleList($id: ID!) { blog(id: $id) { id articles(first: 10) { nodes { id handle author { firstName lastName } body } } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/Blog/397675442\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query BlogArticleList($id: ID!) {\n blog(id: $id) {\n id\n articles(first: 10) {\n nodes {\n id\n handle\n author {\n firstName\n lastName\n }\n body\n }\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/Blog/397675442\"\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 BlogArticleList($id: ID!) {\n blog(id: $id) {\n id\n articles(first: 10) {\n nodes {\n id\n handle\n author {\n firstName\n lastName\n }\n body\n }\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/Blog/397675442\"\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 = <<<QUERY\n query BlogArticleList($id: ID!) {\n blog(id: $id) {\n id\n articles(first: 10) {\n nodes {\n id\n handle\n author {\n firstName\n lastName\n }\n body\n }\n }\n }\n }\nQUERY;\n\n$variables = [\n \"id\" => \"gid://shopify/Blog/397675442\",\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 BlogArticleList($id: ID!) {\n blog(id: $id) {\n id\n articles(first: 10) {\n nodes {\n id\n handle\n author {\n firstName\n lastName\n }\n body\n }\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/Blog/397675442\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query BlogArticleList($id: ID!) {\n blog(id: $id) {\n id\n articles(first: 10) {\n nodes {\n id\n handle\n author {\n firstName\n lastName\n }\n body\n }\n }\n }\n}"
input: { "id": "gid://shopify/Blog/397675442" }
response: { "data": { "blog": { "id": "gid://shopify/Blog/397675442", "articles": { "nodes": [ { "id": "gid://shopify/Article/959752435", "handle": "you-should-buy-this", "author": { "firstName": "", "lastName": "" }, "body": "<p>Go for it, get three.</p>" } ] } } } }