UpdateFormQuestionThreadStatus
Update the status of a form question thread (open/close)
Signature
mutation {
UpdateFormQuestionThreadStatus(threadId: ..., status: ...)
}
Retourne : FormQuestionThread!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
threadId | ID! | ✓ | — | The thread ID |
status | FormQuestionThreadStatus! | ✓ | — | The new status (opened or closed) |
Exemple
mutation {
UpdateFormQuestionThreadStatus(
threadId: $threadId
status: $status
) {
# Sélectionner les champs souhaités
}
}