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.
1 mutation resetPassword {
2 resetPassword(input: { email: "[email protected]" }) {
3 ok
4 }
5 }