create-user
All checks were successful
deploy / deploy (push) Successful in 1m41s

This commit is contained in:
2023-10-24 17:01:05 +03:00
parent 739fcbfaae
commit ef5aa743bf
10 changed files with 457 additions and 0 deletions

View File

@@ -229,6 +229,21 @@ mutation Logout {
}
}
mutation CreateUser {
_create_user(
params: {
email: "test@domain.com",
password: "<bcrypt-hashed-password>",
nickname: "test",
}
) {
id
email
roles
}
}
mutation UpdateUser {
_update_user(
params: {