fix: typos

This commit is contained in:
Lakhan Samani
2021-08-07 14:11:26 +05:30
parent 52b59a72c5
commit 6a1b484557
16 changed files with 51 additions and 43 deletions

View File

@@ -87,7 +87,7 @@ input ForgotPasswordInput {
email: String!
}
input ResetPassowrdInput {
input ResetPasswordInput {
token: String!
password: String!
confirmPassword: String!
@@ -105,7 +105,7 @@ type Mutation {
verifyEmail(params: VerifyEmailInput!): AuthResponse!
resendVerifyEmail(params: ResendVerifyEmailInput!): Response!
forgotPassword(params: ForgotPasswordInput!): Response!
resetPassword(params: ResetPassowrdInput!): Response!
resetPassword(params: ResetPasswordInput!): Response!
deleteUser(params: DeleteUserInput!): Response!
}