Task: Completed login and get token from user and able to change user password by username and updated the security filters and add auth service and auth details. And more add login mutation in resolver

This commit is contained in:
2021-08-08 18:55:52 +07:00
parent 9202c52640
commit ceaacc9685
12 changed files with 167 additions and 37 deletions

View File

@@ -11,4 +11,13 @@ input UserInput {
password: String
name: String
enabled: Boolean
}
type LoginResponse {
token: String
}
input UserChangePasswordInput {
username: String!
password: String!
}