CreateWorkflowActionWithTransition
Signature
mutation {
CreateWorkflowActionWithTransition(fromActionId: ..., type: ...)
}
Retourne : WorkflowAction!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
fromActionId | ID! | ✓ | — | — |
type | WorkflowActionType! | ✓ | — | — |
transitionLabel | String | — | — |
Exemple
mutation {
CreateWorkflowActionWithTransition(
fromActionId: $fromActionId
type: $type
) {
# Sélectionner les champs souhaités
}
}