mutation

updatePassword

Allow user to change their password.
Arguments
updatePasswordRequestSchemaInput
UpdatePasswordRequestSchemaInput
Describes the request structure to update the password.
Response
message
String
Result of the email verification process.
Mutation
1mutation updatePassword(
2 $updatePasswordRequestSchemaInput: UpdatePasswordRequestSchemaInput
3) {
4 updatePassword(
5 updatePasswordRequestSchemaInput: $updatePasswordRequestSchemaInput
6 ) {
7 message
8 }
9}
Try it
Input Variables
1{
2 "updatePasswordRequestSchemaInput": {
3 "new_password": "new_password",
4 "old_password": "old_password"
5 }
6}
Response
1{
2 "updatePassword": {
3 "message": "message"
4 }
5}