adjust-order-line.graphql 246 B

123456789101112
  1. mutation ($id: ID! $qty: Int!) {
  2. adjustOrderLine(orderLineId: $id quantity: $qty) {
  3. ...on Order {
  4. id
  5. code
  6. totalQuantity
  7. }
  8. ...on ErrorResult {
  9. errorCode
  10. }
  11. }
  12. }