GraphQL Cookbook
Password reset
2 min
request password reset with parse graphql api problem you want to request a reset password 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 resetpassword { 2 resetpassword(input { email "example\@email com" }) { 3 ok 4 } 5 } response 1 { 2 "data" { 3 "resetpassword" { 4 "ok" true 5 } 6 } 7 }