forgot_password and reset_password query update

This commit is contained in:
Mussie Teshome
2023-06-26 14:23:40 +03:00
parent 7f47177741
commit dc050f4d70
2 changed files with 22 additions and 12 deletions

View File

@@ -418,15 +418,16 @@ input UpdateUserInput {
}
input ForgotPasswordInput {
email: String!
email_or_phone: String!
state: String
redirect_uri: String
}
input ResetPasswordInput {
token: String!
token_or_code: String!
password: String!
confirm_password: String!
phone_number: String
}
input DeleteUserInput {