Version: unstable
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query ShopMetafield($namespace: String!, $key: String!) { shop { copyrightYear: metafield(namespace: $namespace, key: $key) { value } } }\",\n \"variables\": {\n \"namespace\": \"my_fields\",\n \"key\": \"copyright_year\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query ShopMetafield($namespace: String!, $key: String!) {\n shop {\n copyrightYear: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n }`,\n \"variables\": {\n \"namespace\": \"my_fields\",\n \"key\": \"copyright_year\"\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 ShopMetafield($namespace: String!, $key: String!) {\n shop {\n copyrightYear: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n }\nQUERY\n\nvariables = {\n \"namespace\": \"my_fields\",\n \"key\": \"copyright_year\"\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\" => \"copyright_year\",\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 ShopMetafield($namespace: String!, $key: String!) {\n shop {\n copyrightYear: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n }`,\n {\n variables: {\n \"namespace\": \"my_fields\",\n \"key\": \"copyright_year\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query ShopMetafield($namespace: String!, $key: String!) {\n shop {\n copyrightYear: metafield(namespace: $namespace, key: $key) {\n value\n }\n }\n}"
input: { "namespace": "my_fields", "key": "copyright_year" }
response: { "data": { "shop": { "copyrightYear": { "value": "2022" } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query ShopMetafields { shop { metafields(first: 3) { edges { node { namespace key value } } } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query ShopMetafields {\n shop {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\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 ShopMetafields {\n shop {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query ShopMetafields {\n shop {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query ShopMetafields {\n shop {\n metafields(first: 3) {\n edges {\n node {\n namespace\n key\n value\n }\n }\n }\n }\n}"
input: {}
response: { "data": { "shop": { "metafields": { "edges": [ { "node": { "namespace": "my_fields", "key": "copyright_year", "value": "2022" } } ] } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query { shop { name currencyCode checkoutApiSupported taxesIncluded resourceLimits { maxProductVariants } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query {\n shop {\n name\n currencyCode\n checkoutApiSupported\n taxesIncluded\n resourceLimits {\n maxProductVariants\n }\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 {\n shop {\n name\n currencyCode\n checkoutApiSupported\n taxesIncluded\n resourceLimits {\n maxProductVariants\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query {\n shop {\n name\n currencyCode\n checkoutApiSupported\n taxesIncluded\n resourceLimits {\n maxProductVariants\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query {\n shop {\n name\n currencyCode\n checkoutApiSupported\n taxesIncluded\n resourceLimits {\n maxProductVariants\n }\n }\n}"
input: null
response: { "data": { "shop": { "name": "Snowdevil", "currencyCode": "USD", "checkoutApiSupported": true, "taxesIncluded": false, "resourceLimits": { "maxProductVariants": 100 } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query { shop { staffMembers(first: 10) { edges { node { active avatar { url } email exists firstName id initials isShopOwner lastName locale name phone } } } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query {\n shop {\n staffMembers(first: 10) {\n edges {\n node {\n active\n avatar {\n url\n }\n email\n exists\n firstName\n id\n initials\n isShopOwner\n lastName\n locale\n name\n phone\n }\n }\n }\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 {\n shop {\n staffMembers(first: 10) {\n edges {\n node {\n active\n avatar {\n url\n }\n email\n exists\n firstName\n id\n initials\n isShopOwner\n lastName\n locale\n name\n phone\n }\n }\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query {\n shop {\n staffMembers(first: 10) {\n edges {\n node {\n active\n avatar {\n url\n }\n email\n exists\n firstName\n id\n initials\n isShopOwner\n lastName\n locale\n name\n phone\n }\n }\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query {\n shop {\n staffMembers(first: 10) {\n edges {\n node {\n active\n avatar {\n url\n }\n email\n exists\n firstName\n id\n initials\n isShopOwner\n lastName\n locale\n name\n phone\n }\n }\n }\n }\n}"
input: null
response: { "data": { "shop": { "staffMembers": { "edges": [ { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/106ea358a244c6081c66489854c884cbfa858aec3c1730397e34bd4f4992f21e/www.gravatar.com/avatar/a902d35d9cd3096a7285782c69dd4622.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "sales@example.com", "exists": true, "firstName": "angie", "id": "gid://shopify/StaffMember/1039577421", "initials": [ "a", "l" ], "isShopOwner": false, "lastName": "lucuos", "locale": "en", "name": "angie lucuos", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/29f98977e6ce2b24120b4d26ce7fde694b7bafc46a6be575ce88cf26a789c4e6/www.gravatar.com/avatar/4df4299bb7b53d4a9e8989238f81c15d.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "arnie@champion.example.com", "exists": true, "firstName": "Arnold", "id": "gid://shopify/StaffMember/863601736", "initials": [ "S", "n" ], "isShopOwner": false, "lastName": "Schwarzenegger", "locale": "en", "name": "Snow Devil Inc.", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/s/files/1/2637/1970/users/foo.jpg?v=1731443626" }, "email": "bob@example.com", "exists": true, "firstName": "bob", "id": "gid://shopify/StaffMember/902541635", "initials": [ "b", "b" ], "isShopOwner": true, "lastName": "bobsen", "locale": "en", "name": "bob bobsen", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/a2fa3a40bc8b418a7e6a69413fb84a57164b6f4ce6757d4163ffda4302e02682/www.gravatar.com/avatar/59aa4f8e9b82c046003452b23e3b881e.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "pos@shopify.com", "exists": true, "firstName": "bob", "id": "gid://shopify/StaffMember/1004723144", "initials": [ "b", "b" ], "isShopOwner": false, "lastName": "bobsen", "locale": "en", "name": "bob bobsen", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/739472b8350cf18a7f2058ef2d37019d4026bcb276844fa3d192eed26b594e27/www.gravatar.com/avatar/6fe88e20596eb227b53b543c2cece91e.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "collaborator_bob@example.com", "exists": true, "firstName": "collaborator", "id": "gid://shopify/StaffMember/688782760", "initials": [ "S", "n" ], "isShopOwner": false, "lastName": "bob", "locale": "en", "name": "Snow Devil Inc.", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/8149b06b8974a1092082b18147941ef437a669fa6db5aba0ccd80bee9b33b788/www.gravatar.com/avatar/866ad7602839b586d7d18cb11b131881.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "customereventsbob@example.com", "exists": true, "firstName": "customereventsbob", "id": "gid://shopify/StaffMember/216359514", "initials": [ "c", "b" ], "isShopOwner": false, "lastName": "bobsen", "locale": "en", "name": "customereventsbob bobsen", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/9a11b2a61faef02c90cae564d6cd8f61c9c5932abdc470375ea4af38d2234678/www.gravatar.com/avatar/a30775a5f88642adceaa3a6ff418ff4d.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "customereventsbobnoapps@example.com", "exists": true, "firstName": "customereventsbobnoapps", "id": "gid://shopify/StaffMember/257608065", "initials": [ "c", "b" ], "isShopOwner": false, "lastName": "bobsen", "locale": "en", "name": "customereventsbobnoapps bobsen", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/d0f4af069a9948a91f75815dcf3c24b7bd775bb8fa66571da1b257f2fd2eacf5/www.gravatar.com/avatar/3111a27ed0d92a4209a15190114490d4.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "customereventsbobwithoneapp@example.com", "exists": true, "firstName": "customereventsbobwithoneapp", "id": "gid://shopify/StaffMember/584611871", "initials": [ "c", "b" ], "isShopOwner": false, "lastName": "bobsen", "locale": "en", "name": "customereventsbobwithoneapp bobsen", "phone": null } }, { "node": { "active": false, "avatar": { "url": "https://cdn.shopify.com/proxy/0feaeef95fe37c482d1472c776d9f5c35f3f4b0a051fef68bf702422c284f5fd/www.gravatar.com/avatar/cc9f2fc36ad3c135e4984fc6f63c4c16.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "deactivateduser@example.com", "exists": true, "firstName": "deactivated", "id": "gid://shopify/StaffMember/667736507", "initials": [ "d", "u" ], "isShopOwner": false, "lastName": "user", "locale": "en", "name": "deactivated user", "phone": null } }, { "node": { "active": true, "avatar": { "url": "https://cdn.shopify.com/proxy/bb267d2b2b59370b919f9c8f42719ece9e33c84ee51230220405746dd8c5c504/www.gravatar.com/avatar/68bd9ae0240cb5cfd89463b1fe778375.jpg?s=2048&d=https%3A%2F%2Fcdn.shopify.com%2Fshopifycloud%2Fshopify%2Fassets%2Fno-gravatar-new-04e7c2331218ac202e79e31be502fd5631bc96cb0206580dbcb0720ebbbd7c73.png" }, "email": "existingbob@example.com", "exists": true, "firstName": "existingbob", "id": "gid://shopify/StaffMember/2108187", "initials": [ "e", "b" ], "isShopOwner": false, "lastName": "bobsen", "locale": "en", "name": "existingbob bobsen", "phone": "3213213211" } } ] } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query { shop { currencySettings(first: 1) { edges { node { currencyCode rateUpdatedAt } } } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query {\n shop {\n currencySettings(first: 1) {\n edges {\n node {\n currencyCode\n rateUpdatedAt\n }\n }\n }\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 {\n shop {\n currencySettings(first: 1) {\n edges {\n node {\n currencyCode\n rateUpdatedAt\n }\n }\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query {\n shop {\n currencySettings(first: 1) {\n edges {\n node {\n currencyCode\n rateUpdatedAt\n }\n }\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query {\n shop {\n currencySettings(first: 1) {\n edges {\n node {\n currencyCode\n rateUpdatedAt\n }\n }\n }\n }\n}"
input: null
response: { "data": { "shop": { "currencySettings": { "edges": [ { "node": { "currencyCode": "CAD", "rateUpdatedAt": "2018-01-24T00:01:01Z" } } ] } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query storefrontAccessToken { shop { storefrontAccessTokens(first: 10) { edges { node { id accessToken accessScopes { handle } createdAt title } } } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query storefrontAccessToken {\n shop {\n storefrontAccessTokens(first: 10) {\n edges {\n node {\n id\n accessToken\n accessScopes {\n handle\n }\n createdAt\n title\n }\n }\n }\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 storefrontAccessToken {\n shop {\n storefrontAccessTokens(first: 10) {\n edges {\n node {\n id\n accessToken\n accessScopes {\n handle\n }\n createdAt\n title\n }\n }\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query storefrontAccessToken {\n shop {\n storefrontAccessTokens(first: 10) {\n edges {\n node {\n id\n accessToken\n accessScopes {\n handle\n }\n createdAt\n title\n }\n }\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query storefrontAccessToken {\n shop {\n storefrontAccessTokens(first: 10) {\n edges {\n node {\n id\n accessToken\n accessScopes {\n handle\n }\n createdAt\n title\n }\n }\n }\n }\n}"
input: null
response: { "data": { "shop": { "storefrontAccessTokens": { "edges": [ { "node": { "id": "gid://shopify/StorefrontAccessToken/55270800", "accessToken": "678d97641255a4ab5feff997ee233f4c", "accessScopes": [ { "handle": "unauthenticated_read_product_listings" }, { "handle": "unauthenticated_write_checkouts" }, { "handle": "unauthenticated_read_checkouts" }, { "handle": "unauthenticated_read_selling_plans" } ], "createdAt": "2024-11-12T20:33:46Z", "title": "Buy Button Extension" } } ] } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query ShopPolicyList { shop { shopPolicies { id url body type title createdAt updatedAt } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query ShopPolicyList {\n shop {\n shopPolicies {\n id\n url\n body\n type\n title\n createdAt\n updatedAt\n }\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 ShopPolicyList {\n shop {\n shopPolicies {\n id\n url\n body\n type\n title\n createdAt\n updatedAt\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query ShopPolicyList {\n shop {\n shopPolicies {\n id\n url\n body\n type\n title\n createdAt\n updatedAt\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query ShopPolicyList {\n shop {\n shopPolicies {\n id\n url\n body\n type\n title\n createdAt\n updatedAt\n }\n }\n}"
input: null
response: { "data": { "shop": { "shopPolicies": [ { "id": "gid://shopify/ShopPolicy/8", "url": "https://checkout.local/26371970/policies/8.html?locale=en", "body": "Contact Information - this is a contact information document.
", "type": "CONTACT_INFORMATION", "title": "Contact information", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" }, { "id": "gid://shopify/ShopPolicy/4", "url": "https://checkout.local/26371970/policies/4.html?locale=en", "body": "This is our Legal Notice
", "type": "LEGAL_NOTICE", "title": "Legal notice", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" }, { "id": "gid://shopify/ShopPolicy/2", "url": "https://checkout.local/26371970/policies/2.html?locale=en", "body": "PrivacyPolicy - this is a privacy policy document.
", "type": "PRIVACY_POLICY", "title": "Privacy policy", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" }, { "id": "gid://shopify/ShopPolicy/1", "url": "https://checkout.local/26371970/policies/1.html?locale=en", "body": "The following is snowdevil's refund policy. blah blah blah blah blah.
", "type": "REFUND_POLICY", "title": "Refund policy", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" }, { "id": "gid://shopify/ShopPolicy/5", "url": "https://checkout.local/26371970/policies/5.html?locale=en", "body": "This is our Shipping Policy
", "type": "SHIPPING_POLICY", "title": "Shipping policy", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" }, { "id": "gid://shopify/ShopPolicy/7", "url": "https://checkout.local/26371970/policies/7.html?locale=en", "body": "This is our Subscription Policy
", "type": "SUBSCRIPTION_POLICY", "title": "Cancellation policy", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" }, { "id": "gid://shopify/ShopPolicy/6", "url": "https://checkout.local/26371970/policies/6.html?locale=en", "body": "This is our Terms of Sale 🇫🇷
", "type": "TERMS_OF_SALE", "title": "Terms of sale", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" }, { "id": "gid://shopify/ShopPolicy/3", "url": "https://checkout.local/26371970/policies/3.html?locale=en", "body": "Terms of Service - this is our terms of service
", "type": "TERMS_OF_SERVICE", "title": "Terms of service", "createdAt": "2024-11-08T11:41:53-05:00", "updatedAt": "2024-11-08T11:41:53-05:00" } ] } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/unstable/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query ShopShow { shop { accountOwner { name } alerts { action { title url } description } billingAddress { address1 address2 city company country countryCodeV2 latitude longitude phone province provinceCode zip } checkoutApiSupported contactEmail createdAt currencyCode currencyFormats { moneyFormat moneyInEmailsFormat moneyWithCurrencyFormat moneyWithCurrencyInEmailsFormat } customerAccounts description email enabledPresentmentCurrencies fulfillmentServices { handle serviceName } ianaTimezone id marketingSmsConsentEnabledAtCheckout myshopifyDomain name paymentSettings { supportedDigitalWallets } plan { displayName partnerDevelopment shopifyPlus } primaryDomain { host id } productTypes(first: 250) { edges { node } } setupRequired shipsToCountries taxesIncluded taxShipping timezoneAbbreviation transactionalSmsDisabled updatedAt url weightUnit } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query ShopShow {\n shop {\n accountOwner {\n name\n }\n alerts {\n action {\n title\n url\n }\n description\n }\n billingAddress {\n address1\n address2\n city\n company\n country\n countryCodeV2\n latitude\n longitude\n phone\n province\n provinceCode\n zip\n }\n checkoutApiSupported\n contactEmail\n createdAt\n currencyCode\n currencyFormats {\n moneyFormat\n moneyInEmailsFormat\n moneyWithCurrencyFormat\n moneyWithCurrencyInEmailsFormat\n }\n customerAccounts\n description\n email\n enabledPresentmentCurrencies\n fulfillmentServices {\n handle\n serviceName\n }\n ianaTimezone\n id\n marketingSmsConsentEnabledAtCheckout\n myshopifyDomain\n name\n paymentSettings {\n supportedDigitalWallets\n }\n plan {\n displayName\n partnerDevelopment\n shopifyPlus\n }\n primaryDomain {\n host\n id\n }\n productTypes(first: 250) {\n edges {\n node\n }\n }\n setupRequired\n shipsToCountries\n taxesIncluded\n taxShipping\n timezoneAbbreviation\n transactionalSmsDisabled\n updatedAt\n url\n weightUnit\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 ShopShow {\n shop {\n accountOwner {\n name\n }\n alerts {\n action {\n title\n url\n }\n description\n }\n billingAddress {\n address1\n address2\n city\n company\n country\n countryCodeV2\n latitude\n longitude\n phone\n province\n provinceCode\n zip\n }\n checkoutApiSupported\n contactEmail\n createdAt\n currencyCode\n currencyFormats {\n moneyFormat\n moneyInEmailsFormat\n moneyWithCurrencyFormat\n moneyWithCurrencyInEmailsFormat\n }\n customerAccounts\n description\n email\n enabledPresentmentCurrencies\n fulfillmentServices {\n handle\n serviceName\n }\n ianaTimezone\n id\n marketingSmsConsentEnabledAtCheckout\n myshopifyDomain\n name\n paymentSettings {\n supportedDigitalWallets\n }\n plan {\n displayName\n partnerDevelopment\n shopifyPlus\n }\n primaryDomain {\n host\n id\n }\n productTypes(first: 250) {\n edges {\n node\n }\n }\n setupRequired\n shipsToCountries\n taxesIncluded\n taxShipping\n timezoneAbbreviation\n transactionalSmsDisabled\n updatedAt\n url\n weightUnit\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query ShopShow {\n shop {\n accountOwner {\n name\n }\n alerts {\n action {\n title\n url\n }\n description\n }\n billingAddress {\n address1\n address2\n city\n company\n country\n countryCodeV2\n latitude\n longitude\n phone\n province\n provinceCode\n zip\n }\n checkoutApiSupported\n contactEmail\n createdAt\n currencyCode\n currencyFormats {\n moneyFormat\n moneyInEmailsFormat\n moneyWithCurrencyFormat\n moneyWithCurrencyInEmailsFormat\n }\n customerAccounts\n description\n email\n enabledPresentmentCurrencies\n fulfillmentServices {\n handle\n serviceName\n }\n ianaTimezone\n id\n marketingSmsConsentEnabledAtCheckout\n myshopifyDomain\n name\n paymentSettings {\n supportedDigitalWallets\n }\n plan {\n displayName\n partnerDevelopment\n shopifyPlus\n }\n primaryDomain {\n host\n id\n }\n productTypes(first: 250) {\n edges {\n node\n }\n }\n setupRequired\n shipsToCountries\n taxesIncluded\n taxShipping\n timezoneAbbreviation\n transactionalSmsDisabled\n updatedAt\n url\n weightUnit\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query ShopShow {\n shop {\n accountOwner {\n name\n }\n alerts {\n action {\n title\n url\n }\n description\n }\n billingAddress {\n address1\n address2\n city\n company\n country\n countryCodeV2\n latitude\n longitude\n phone\n province\n provinceCode\n zip\n }\n checkoutApiSupported\n contactEmail\n createdAt\n currencyCode\n currencyFormats {\n moneyFormat\n moneyInEmailsFormat\n moneyWithCurrencyFormat\n moneyWithCurrencyInEmailsFormat\n }\n customerAccounts\n description\n email\n enabledPresentmentCurrencies\n fulfillmentServices {\n handle\n serviceName\n }\n ianaTimezone\n id\n marketingSmsConsentEnabledAtCheckout\n myshopifyDomain\n name\n paymentSettings {\n supportedDigitalWallets\n }\n plan {\n displayName\n partnerDevelopment\n shopifyPlus\n }\n primaryDomain {\n host\n id\n }\n productTypes(first: 250) {\n edges {\n node\n }\n }\n setupRequired\n shipsToCountries\n taxesIncluded\n taxShipping\n timezoneAbbreviation\n transactionalSmsDisabled\n updatedAt\n url\n weightUnit\n }\n}"
input: null
response: { "data": { "shop": { "accountOwner": { "name": "bob bobsen" }, "alerts": [], "billingAddress": { "address1": "190 MacLaren Street", "address2": "suite 800", "city": "Ottawa", "company": "Snowdevil", "country": "Canada", "countryCodeV2": "CA", "latitude": 45.45, "longitude": -75.43, "phone": "6135551234", "province": "Ontario", "provinceCode": "ON", "zip": "K2P 0L6" }, "checkoutApiSupported": true, "contactEmail": "email@snowdevil.ca", "createdAt": "2005-05-05T00:00:00Z", "currencyCode": "USD", "currencyFormats": { "moneyFormat": "${{amount}}", "moneyInEmailsFormat": "${{amount}}", "moneyWithCurrencyFormat": "${{amount}} USD", "moneyWithCurrencyInEmailsFormat": "${{amount}} USD" }, "customerAccounts": "OPTIONAL", "description": "Snow devil", "email": "email@snowdevil.ca", "enabledPresentmentCurrencies": [ "AUD", "CAD", "JPY", "USD" ], "fulfillmentServices": [ { "handle": "manual", "serviceName": "Manual" }, { "handle": "shipwire", "serviceName": "Shipwire" }, { "handle": "on-demand-delivery", "serviceName": "On Demand Delivery" }, { "handle": "mr-acme-drop-shipper", "serviceName": "Mr. ACME Drop Shipper" }, { "handle": "mr-drop-shipper", "serviceName": "Mr. Drop Shipper" } ], "ianaTimezone": "America/New_York", "id": "gid://shopify/Shop/26371970", "marketingSmsConsentEnabledAtCheckout": false, "myshopifyDomain": "snowdevil.myshopify.com", "name": "Snowdevil", "paymentSettings": { "supportedDigitalWallets": [] }, "plan": { "displayName": "Basic", "partnerDevelopment": false, "shopifyPlus": false }, "primaryDomain": { "host": "www.snowdevil.ca", "id": "gid://shopify/Domain/948873163" }, "productTypes": { "edges": [ { "node": "Boots" }, { "node": "Cult Products" }, { "node": "Footwear" }, { "node": "Snowboards" } ] }, "setupRequired": false, "shipsToCountries": [ "AC", "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AR", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GW", "GY", "HK", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MK", "ML", "MM", "MN", "MO", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PS", "PT", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SZ", "TA", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VN", "VU", "WF", "WS", "XK", "YE", "YT", "ZA", "ZM", "ZW" ], "taxesIncluded": false, "taxShipping": false, "timezoneAbbreviation": "EST", "transactionalSmsDisabled": false, "updatedAt": "2024-11-08T16:41:53Z", "url": "https://www.snowdevil.ca", "weightUnit": "KILOGRAMS" } } }