resendEmailVerification
Overview
This mutation resends the verification email to the current account's inbox.
Special Considerations
- This mutation takes no inputs.
Inputs
N/A
Returns
Promise<SuccessResult>
A promise containing a success message.
Example
Running this mutation:
mutation {
resendEmailVerification{
message
}
}
Gives us:
{
"data": {
"resendEmailVerification": {
"message": "Email verification resent!"
}
}
}
Common Errors
When running this query some of the common errors encountered include:
- Error resending email verification: ... (E-7005)
- Third party authorization service encountered error while sending verification email.