customerRecoverMutation top-level constant
String
const customerRecoverMutation
Mutation to recover a customer
Implementation
const String customerRecoverMutation = r'''
mutation customerRecover($email: String!) {
customerRecover(email: $email) {
customerUserErrors {
code
field
message
}
}
}
''';