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 { productDelete(input: {id: \\\"gid://shopify/Product/-1\\\"}) { deletedProductId userErrors { field message } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `mutation {\n productDelete(input: {id: \"gid://shopify/Product/-1\"}) {\n deletedProductId\n userErrors {\n field\n message\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 mutation {\n productDelete(input: {id: \"gid://shopify/Product/-1\"}) {\n deletedProductId\n userErrors {\n field\n message\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 mutation {\n productDelete(input: {id: \"gid://shopify/Product/-1\"}) {\n deletedProductId\n userErrors {\n field\n message\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "mutation {\n productDelete(input: {id: \"gid://shopify/Product/-1\"}) {\n deletedProductId\n userErrors {\n field\n message\n }\n }\n}"
input: null
response: { "data": { "productDelete": { "deletedProductId": null, "userErrors": [ { "field": [ "id" ], "message": "Product does not exist" } ] } } }
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 { productDelete(input: {id: \\\"gid://shopify/Product/108828309\\\"}) { deletedProductId } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `mutation {\n productDelete(input: {id: \"gid://shopify/Product/108828309\"}) {\n deletedProductId\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 {\n productDelete(input: {id: \"gid://shopify/Product/108828309\"}) {\n deletedProductId\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 mutation {\n productDelete(input: {id: \"gid://shopify/Product/108828309\"}) {\n deletedProductId\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "mutation {\n productDelete(input: {id: \"gid://shopify/Product/108828309\"}) {\n deletedProductId\n }\n}"
input: null
response: { "data": { "productDelete": { "deletedProductId": "gid://shopify/Product/108828309" } } }
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 productDelete($input: ProductDeleteInput!, $synchronous: Boolean!) { productDelete(synchronous: $synchronous, input: $input) { deletedProductId productDeleteOperation { id status deletedProductId } } }\",\n \"variables\": {\n \"synchronous\": false,\n \"input\": {\n \"id\": \"gid://shopify/Product/108828309\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation productDelete($input: ProductDeleteInput!, $synchronous: Boolean!) {\n productDelete(synchronous: $synchronous, input: $input) {\n deletedProductId\n productDeleteOperation {\n id\n status\n deletedProductId\n }\n }\n }`,\n \"variables\": {\n \"synchronous\": false,\n \"input\": {\n \"id\": \"gid://shopify/Product/108828309\"\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 mutation productDelete($input: ProductDeleteInput!, $synchronous: Boolean!) {\n productDelete(synchronous: $synchronous, input: $input) {\n deletedProductId\n productDeleteOperation {\n id\n status\n deletedProductId\n }\n }\n }\nQUERY\n\nvariables = {\n \"synchronous\": false,\n \"input\": {\n \"id\": \"gid://shopify/Product/108828309\"\n }\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 = <<false,\n \"input\" => [\n \"id\" => \"gid://shopify/Product/108828309\",\n ],\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 productDelete($input: ProductDeleteInput!, $synchronous: Boolean!) {\n productDelete(synchronous: $synchronous, input: $input) {\n deletedProductId\n productDeleteOperation {\n id\n status\n deletedProductId\n }\n }\n }`,\n {\n variables: {\n \"synchronous\": false,\n \"input\": {\n \"id\": \"gid://shopify/Product/108828309\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation productDelete($input: ProductDeleteInput!, $synchronous: Boolean!) {\n productDelete(synchronous: $synchronous, input: $input) {\n deletedProductId\n productDeleteOperation {\n id\n status\n deletedProductId\n }\n }\n}"
input: { "synchronous": false, "input": { "id": "gid://shopify/Product/108828309" } }
response: { "data": { "productDelete": { "deletedProductId": null, "productDeleteOperation": { "id": "gid://shopify/ProductDeleteOperation/1010603707", "status": "CREATED", "deletedProductId": null } } } }