SendFormQuestionThreadNotification
Send a grouped notification email for all non-notified comments in a thread
Signature
mutation {
SendFormQuestionThreadNotification(threadId: ...)
}
Retourne : FormQuestionThread!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
threadId | ID! | ✓ | — | The thread ID to send notifications for |
customMessage | String | — | Optional custom message to include in the email |
Exemple
mutation {
SendFormQuestionThreadNotification(
threadId: $threadId
) {
# Sélectionner les champs souhaités
}
}