Schema Documentation

sendPasswordResetEmail

Description

The payload for the sendPasswordResetEmail mutation

Arguments
NameDescription
input - SendPasswordResetEmailInput! Input for the sendPasswordResetEmail mutation

Example

Query
mutation sendPasswordResetEmail($input: SendPasswordResetEmailInput!){
  sendPasswordResetEmail(input: $input){
    clientMutationIduser {
      ...UserFragment
    }
  }
}
Variables
{"input":SendPasswordResetEmailInput}
Response
{"data":{"sendPasswordResetEmail":{"clientMutationId":"abc123","user":User}}}