Email verification
2 min
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 mutation sendVerificationEmail {
2 sendVerificationEmail(input: { email: "[email protected]" }) {
3 ok
4 }
5 }