app: migrate user creation to GraphQL

This commit is contained in:
Valentin Tolmer
2021-08-30 09:50:10 +02:00
committed by nitnelave
parent 37f61ce212
commit 2aca9dbe62
3 changed files with 44 additions and 33 deletions

View File

@@ -0,0 +1,6 @@
mutation CreateUser($user: UserInput!) {
createUser(user: $user) {
id
creationDate
}
}