Version: 2024-04
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-04/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query refund($input: ID!) { refund(id: $input) { duties { originalDuty { countryCodeOfOrigin } amountSet { shopMoney { amount } } } } }\",\n \"variables\": {\n \"input\": \"gid://shopify/Refund/850600470\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query refund($input: ID!) {\n refund(id: $input) {\n duties {\n originalDuty {\n countryCodeOfOrigin\n }\n amountSet {\n shopMoney {\n amount\n }\n }\n }\n }\n }`,\n \"variables\": {\n \"input\": \"gid://shopify/Refund/850600470\"\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 refund($input: ID!) {\n refund(id: $input) {\n duties {\n originalDuty {\n countryCodeOfOrigin\n }\n amountSet {\n shopMoney {\n amount\n }\n }\n }\n }\n }\nQUERY\n\nvariables = {\n \"input\": \"gid://shopify/Refund/850600470\"\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/Refund/850600470\",\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 refund($input: ID!) {\n refund(id: $input) {\n duties {\n originalDuty {\n countryCodeOfOrigin\n }\n amountSet {\n shopMoney {\n amount\n }\n }\n }\n }\n }`,\n {\n variables: {\n \"input\": \"gid://shopify/Refund/850600470\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query refund($input: ID!) {\n refund(id: $input) {\n duties {\n originalDuty {\n countryCodeOfOrigin\n }\n amountSet {\n shopMoney {\n amount\n }\n }\n }\n }\n}"
input: { "input": "gid://shopify/Refund/850600470" }
response: { "data": { "refund": { "duties": [ { "originalDuty": { "countryCodeOfOrigin": "US" }, "amountSet": { "shopMoney": { "amount": "6.0" } } } ] } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-04/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query refund($input: ID!) { refund(id: $input) { totalRefundedSet { shopMoney { amount currencyCode } } } }\",\n \"variables\": {\n \"input\": \"gid://shopify/Refund/196417871\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query refund($input: ID!) {\n refund(id: $input) {\n totalRefundedSet {\n shopMoney {\n amount\n currencyCode\n }\n }\n }\n }`,\n \"variables\": {\n \"input\": \"gid://shopify/Refund/196417871\"\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 refund($input: ID!) {\n refund(id: $input) {\n totalRefundedSet {\n shopMoney {\n amount\n currencyCode\n }\n }\n }\n }\nQUERY\n\nvariables = {\n \"input\": \"gid://shopify/Refund/196417871\"\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/Refund/196417871\",\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 refund($input: ID!) {\n refund(id: $input) {\n totalRefundedSet {\n shopMoney {\n amount\n currencyCode\n }\n }\n }\n }`,\n {\n variables: {\n \"input\": \"gid://shopify/Refund/196417871\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query refund($input: ID!) {\n refund(id: $input) {\n totalRefundedSet {\n shopMoney {\n amount\n currencyCode\n }\n }\n }\n}"
input: { "input": "gid://shopify/Refund/196417871" }
response: { "data": { "refund": { "totalRefundedSet": { "shopMoney": { "amount": "5.75", "currencyCode": "USD" } } } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-04/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query RefundShow($id: ID!) { refund(id: $id) { id note totalRefundedSet { presentmentMoney { amount currencyCode } } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/Refund/196417871\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query RefundShow($id: ID!) {\n refund(id: $id) {\n id\n note\n totalRefundedSet {\n presentmentMoney {\n amount\n currencyCode\n }\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/Refund/196417871\"\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 RefundShow($id: ID!) {\n refund(id: $id) {\n id\n note\n totalRefundedSet {\n presentmentMoney {\n amount\n currencyCode\n }\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/Refund/196417871\"\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/Refund/196417871\",\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 RefundShow($id: ID!) {\n refund(id: $id) {\n id\n note\n totalRefundedSet {\n presentmentMoney {\n amount\n currencyCode\n }\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/Refund/196417871\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query RefundShow($id: ID!) {\n refund(id: $id) {\n id\n note\n totalRefundedSet {\n presentmentMoney {\n amount\n currencyCode\n }\n }\n }\n}"
input: { "id": "gid://shopify/Refund/196417871" }
response: { "data": { "refund": { "id": "gid://shopify/Refund/196417871", "note": "free shipping", "totalRefundedSet": { "presentmentMoney": { "amount": "5.75", "currencyCode": "USD" } } } } }