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
) {
# Sélectionner les champs souhaités
}
}