customerDeleteMutation top-level constant

String const customerDeleteMutation

Mutation to delete a customer

Implementation

const String customerDeleteMutation = r'''
mutation customerDelete($id: ID!) {
  customerDelete(input: {id: $id}) {
    deletedCustomerId
    userErrors {
      message
    }
  }
}
''';