Skip to main content

SendFormQuestionThreadNotification

Stable

Send a grouped notification email for all non-notified comments in a thread

Signature

mutation {
SendFormQuestionThreadNotification(threadId: ...)
}

Retourne : FormQuestionThread!

Arguments

NomTypeRequisDéfautDescription
threadIdID!The thread ID to send notifications for
customMessageStringOptional custom message to include in the email

Exemple

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