Request Password Reset with Parse GraphQL API
Problem
You want to send an email verification to a user in your database through the Parse GraphQL API.
Version Information
It is only available for Parse Server 3.10.0 and later.
1
2
3
4
5
mutation sendVerificationEmail {
sendVerificationEmail(input: { email: "[email protected]" }) {
ok
}
}
Result 3.10.0 and later:
1
2
3
4
5
6
7
{
"data": {
"sendVerificationEmail": {
"ok": true
}
}
}