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\": \"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/2024-04/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" } } }