Comment on page
Mutations
GraphQL mutations create, update, or delete objects in the Shopify GraphQL admin API. A mutation has a name, takes input data, and specifies fields to return in the response.
This page discusses the general concept of a GraphQL mutation. For more detail on how this applies to Mechanic and the Shopify API, see Actions / Shopify.
GraphQL mutation
Response
mutation {
productCreate(input: {title: "Red Ball", productType: "Toy", vendor: "Toys"}) {
product {
id
}
}
}
{
"data": {
"productCreate": {
"product": {
"id": "gid://shopify/Product/13588"
}
}
}
}
GraphQL mutation
Response
mutation {
productUpdate(input: {id: "gid://shopify/Product/13588", productType: "Ball"}) {
product {
id
type
}
}
}
{
"data": {
"productCreate": {
"product": {
"id": "gid://shopify/Product/13588"
"productType" : "Ball"
}
}
}
}
Last modified 2yr ago