GetOpenedFormQuestionAccountThreads
Get all opened form question threads for an account (for comment navigation)
Signature
query {
GetOpenedFormQuestionAccountThreads(accountId: ...)
}
Retourne : [FormQuestionAccountThread!]!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
accountId | ID! | ✓ | — | The account ID |
Exemple
query {
GetOpenedFormQuestionAccountThreads(
accountId: $accountId
) {
id
configurableFormQuestion {}
status {}
statusChangedAt
statusChangedBy
comments {}
notifications {}
createdAt
updatedAt
formQuestionWithAnswer {}
pendingNotificationCommentCount
account {}
}
}