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