feat: Implement updateUser mutation

This commit is contained in:
Faruk AYDIN
2022-03-07 20:57:05 +03:00
committed by Ömer Faruk Aydın
parent 64011b5c4b
commit 212523aec6
3 changed files with 24 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ type Mutation {
createStep(input: StepInput!): Step
updateStep(input: StepInput!): Step
deleteStep(id: String!): Step
updateUser(email: String, password: String): User
login(email: String!, password: String!): Auth
}