Skip to main content

UpdateFormQuestionThreadStatus

Stable

Update the status of a form question thread (open/close)

Signature

mutation {
UpdateFormQuestionThreadStatus(threadId: ..., status: ...)
}

Retourne : FormQuestionThread!

Arguments

NomTypeRequisDéfautDescription
threadIdID!The thread ID
statusFormQuestionThreadStatus!The new status (opened or closed)

Exemple

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