DeactivateUser
Signature
mutation {
DeactivateUser(userId: ..., withEmail: ..., unactiveComment: ...)
}
Retourne : User
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
userId | ID! | ✓ | — | — |
withEmail | Boolean! | ✓ | — | — |
unactiveComment | String! | ✓ | — | — |
Exemple
mutation {
DeactivateUser(
userId: $userId
withEmail: $withEmail
unactiveComment: $unactiveComment
) {
# Sélectionner les champs souhaités
}
}