GraphQL Cookbook
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 request 1 mutation sendverificationemail { 2 sendverificationemail(input { email "example\@email com" }) { 3 ok 4 } 5 } response 1 { 2 "data" { 3 "sendverificationemail" { 4 "ok" true 5 } 6 } 7 }