13 lines
473 B
Plaintext
13 lines
473 B
Plaintext
|
mutation ($providerKey: String!, $email: String!, $name: String!, $passwordRaw: String, $groups: [Int]!, $mustChangePassword: Boolean, $sendWelcomeEmail: Boolean) {
|
||
|
users {
|
||
|
create(providerKey: $providerKey, email: $email, name: $name, passwordRaw: $passwordRaw, groups: $groups, mustChangePassword: $mustChangePassword, sendWelcomeEmail: $sendWelcomeEmail) {
|
||
|
responseResult {
|
||
|
succeeded
|
||
|
errorCode
|
||
|
slug
|
||
|
message
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|