Skip to content

Instantly share code, notes, and snippets.

@zorca
Created April 1, 2021 10:21
Show Gist options
  • Save zorca/7e36132d2b9baedeb7d4258a465e60fa to your computer and use it in GitHub Desktop.
Save zorca/7e36132d2b9baedeb7d4258a465e60fa to your computer and use it in GitHub Desktop.
mutation MyMutation {
createOrder(input: {clientMutationId: "123", customerId: 2, lineItems: [{productId: 66, quantity: 1, metaData: {key: "size", value: "XL"}}]}) {
order {
id
lineItems {
edges {
node {
itemId
orderId
productId
quantity
subtotal
subtotalTax
taxClass
taxStatus
total
totalTax
variationId
metaData {
id
key
value
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment