checkoutCustomerDisassociateMutation top-level constant
String
const checkoutCustomerDisassociateMutation
Mutation to disassociate a customer from a checkout
Implementation
const String checkoutCustomerDisassociateMutation = r'''
mutation checkoutCustomerDisassociate($id:ID!) {
checkoutCustomerDisassociateV2(checkoutId: $id) {
checkoutUserErrors {
code
field
message
}
}
}
''';