checkoutDiscountCodeRemoveMutation top-level constant

String const checkoutDiscountCodeRemoveMutation

Mutation to remove a discount code from a checkout

Implementation

const String checkoutDiscountCodeRemoveMutation = r'''
mutation checkoutDiscountCodeRemove($checkoutId : ID!) {
  checkoutDiscountCodeRemove(checkoutId: $checkoutId) {
    checkoutUserErrors {
      code
      field
      message
    }
  }
}''';