feat: register validation + create + admin improvements

This commit is contained in:
Nicolas Giard
2018-12-17 00:51:52 -05:00
parent 17244a0cb3
commit 901dbb98e0
25 changed files with 668 additions and 62 deletions

View File

@@ -0,0 +1,13 @@
mutation($email: String!, $password: String!, $name: String!) {
authentication {
register(email: $email, password: $password, name: $name) {
responseResult {
succeeded
errorCode
slug
message
}
jwt
}
}
}