customerAddressDeleteMutation top-level constant

String const customerAddressDeleteMutation

Mutation to delete a customer address

Implementation

const String customerAddressDeleteMutation = r'''
mutation customerAddressDelete($customerAccessToken : String!, $id : ID!) {
  customerAddressDelete(customerAccessToken: $customerAccessToken, id: $id) {
    customerUserErrors {
      code
      field
      message
    }
  }
}
''';