Magidoc

checkoutDelete
Mutation

Deletes a checkout.

Arguments

#

token

Non-null

Token of a checkout to delete.

Response

#

Returns CheckoutDelete .

Example

#

    mutation ($token: UUID!) {
  checkoutDelete(token: $token) {
    checkoutErrors {
      field
      message
      code
      variants
    }
    checkout {
      created
      lastChange
      quantity
      note
      currency
      discountName
      translatedDiscountName
      voucherCode
      poNumbers
      id
      email
      isShippingRequired
      token
      discountType
    }
  }
}

  

3