CreateAccountComment
Signature
mutation {
CreateAccountComment(content: ..., accountId: ...)
}
Retourne : AccountComment!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
content | String! | ✓ | — | — |
accountId | ID! | ✓ | — | — |
Exemple
mutation {
CreateAccountComment(
content: $content
accountId: $accountId
) {
# Sélectionner les champs souhaités
}
}