feat: Implement createUser mutation
This commit is contained in:
@@ -48,6 +48,7 @@ type Mutation {
|
||||
createStep(input: CreateStepInput): Step
|
||||
updateStep(input: UpdateStepInput): Step
|
||||
deleteStep(input: DeleteStepInput): Step
|
||||
createUser(input: CreateUserInput): User
|
||||
updateUser(input: UpdateUserInput): User
|
||||
login(input: LoginInput): Auth
|
||||
}
|
||||
@@ -300,6 +301,11 @@ input DeleteStepInput {
|
||||
id: String!
|
||||
}
|
||||
|
||||
input CreateUserInput {
|
||||
email: String
|
||||
password: String
|
||||
}
|
||||
|
||||
input UpdateUserInput {
|
||||
email: String
|
||||
password: String
|
||||
|
Reference in New Issue
Block a user