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\": \"mutation OrderCancel($orderId: ID!, $notifyCustomer: Boolean, $refund: Boolean!, $restock: Boolean!, $reason: OrderCancelReason!, $staffNote: String) { orderCancel(orderId: $orderId, notifyCustomer: $notifyCustomer, refund: $refund, restock: $restock, reason: $reason, staffNote: $staffNote) { job { id done } jobResult { id done } orderCancelUserErrors { field message code } } }\",\n \"variables\": {\n \"orderId\": \"gid://shopify/Order/148977776\",\n \"notifyCustomer\": true,\n \"refund\": true,\n \"restock\": true,\n \"reason\": \"CUSTOMER\",\n \"staffNote\": \"Wrong size. Customer reached out saying they already re-purchased the correct size.\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation OrderCancel($orderId: ID!, $notifyCustomer: Boolean, $refund: Boolean!, $restock: Boolean!, $reason: OrderCancelReason!, $staffNote: String) {\n orderCancel(orderId: $orderId, notifyCustomer: $notifyCustomer, refund: $refund, restock: $restock, reason: $reason, staffNote: $staffNote) {\n job {\n id\n done\n }\n jobResult {\n id\n done\n }\n orderCancelUserErrors {\n field\n message\n code\n }\n }\n }`,\n \"variables\": {\n \"orderId\": \"gid://shopify/Order/148977776\",\n \"notifyCustomer\": true,\n \"refund\": true,\n \"restock\": true,\n \"reason\": \"CUSTOMER\",\n \"staffNote\": \"Wrong size. Customer reached out saying they already re-purchased the correct size.\"\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 mutation OrderCancel($orderId: ID!, $notifyCustomer: Boolean, $refund: Boolean!, $restock: Boolean!, $reason: OrderCancelReason!, $staffNote: String) {\n orderCancel(orderId: $orderId, notifyCustomer: $notifyCustomer, refund: $refund, restock: $restock, reason: $reason, staffNote: $staffNote) {\n job {\n id\n done\n }\n jobResult {\n id\n done\n }\n orderCancelUserErrors {\n field\n message\n code\n }\n }\n }\nQUERY\n\nvariables = {\n \"orderId\": \"gid://shopify/Order/148977776\",\n \"notifyCustomer\": true,\n \"refund\": true,\n \"restock\": true,\n \"reason\": \"CUSTOMER\",\n \"staffNote\": \"Wrong size. Customer reached out saying they already re-purchased the correct size.\"\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/Order/148977776\",\n \"notifyCustomer\" => true,\n \"refund\" => true,\n \"restock\" => true,\n \"reason\" => \"CUSTOMER\",\n \"staffNote\" => \"Wrong size. Customer reached out saying they already re-purchased the correct size.\",\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 mutation OrderCancel($orderId: ID!, $notifyCustomer: Boolean, $refund: Boolean!, $restock: Boolean!, $reason: OrderCancelReason!, $staffNote: String) {\n orderCancel(orderId: $orderId, notifyCustomer: $notifyCustomer, refund: $refund, restock: $restock, reason: $reason, staffNote: $staffNote) {\n job {\n id\n done\n }\n jobResult {\n id\n done\n }\n orderCancelUserErrors {\n field\n message\n code\n }\n }\n }`,\n {\n variables: {\n \"orderId\": \"gid://shopify/Order/148977776\",\n \"notifyCustomer\": true,\n \"refund\": true,\n \"restock\": true,\n \"reason\": \"CUSTOMER\",\n \"staffNote\": \"Wrong size. Customer reached out saying they already re-purchased the correct size.\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation OrderCancel($orderId: ID!, $notifyCustomer: Boolean, $refund: Boolean!, $restock: Boolean!, $reason: OrderCancelReason!, $staffNote: String) {\n orderCancel(orderId: $orderId, notifyCustomer: $notifyCustomer, refund: $refund, restock: $restock, reason: $reason, staffNote: $staffNote) {\n job {\n id\n done\n }\n jobResult {\n id\n done\n }\n orderCancelUserErrors {\n field\n message\n code\n }\n }\n}"
input: { "orderId": "gid://shopify/Order/148977776", "notifyCustomer": true, "refund": true, "restock": true, "reason": "CUSTOMER", "staffNote": "Wrong size. Customer reached out saying they already re-purchased the correct size." }
response: { "data": { "orderCancel": { "job": { "id": "gid://shopify/Job/5f82274b-13ed-44f0-b8d8-6a448dfd1636", "done": false }, "jobResult": { "id": "gid://shopify/OrderCancelJobResult/884324524", "done": false }, "orderCancelUserErrors": [] } } }