GraphQL Cookbook

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
2
3
4
5
mutation resetPassword {
  resetPassword(input: { email: "[email protected]" }) {
    ok
  }
}
Result 3.10.0 and later:
1
2
3
4
5
6
7
{
  "data": {
    "resetPassword": {
      "ok": true
    }
  }
}