UpdateAccountComment
Signature
mutation {
UpdateAccountComment(content: ..., id: ...)
}
Retourne : AccountComment!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
content | String! | ✓ | — | — |
id | ID! | ✓ | — | — |
Exemple
mutation {
UpdateAccountComment(
content: $content
id: $id
) {
id
content
account {}
userCreator
lastEditor
createdAt
}
}