GetFormQuestionThread
Get a form question thread by ID. Returns the interface type which can be either FormQuestionAccountThread or FormQuestionInvestmentThread
Signature
query {
GetFormQuestionThread(threadId: ...)
}
Retourne : FormQuestionThread
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
threadId | ID! | ✓ | — | The thread Id |
Exemple
query {
GetFormQuestionThread(
threadId: $threadId
) {
id
configurableFormQuestion {}
status {}
statusChangedAt
statusChangedBy
comments {}
notifications {}
createdAt
updatedAt
formQuestionWithAnswer {}
pendingNotificationCommentCount
}
}