Skip to main content

GetFormQuestionThread

Stable

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

NomTypeRequisDéfautDescription
threadIdID!The thread Id

Exemple

query {
GetFormQuestionThread(
threadId: $threadId
) {
id
configurableFormQuestion {}
status {}
statusChangedAt
statusChangedBy
comments {}
notifications {}
createdAt
updatedAt
formQuestionWithAnswer {}
pendingNotificationCommentCount
}
}