UpdateWorkflowActionSendNotification
Signature
mutation {
UpdateWorkflowActionSendNotification(workflowActionId: ..., recipient: ..., subject: ..., content: ...)
}
Retourne : WorkflowActionSendNotification!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
workflowActionId | ID! | ✓ | — | — |
recipient | String! | ✓ | — | — |
subject | String! | ✓ | — | — |
content | String! | ✓ | — | — |
Exemple
mutation {
UpdateWorkflowActionSendNotification(
workflowActionId: $workflowActionId
recipient: $recipient
subject: $subject
content: $content
) {
# Sélectionner les champs souhaités
}
}