UpdateWorkflowActionExecuteAlgorithm
Signature
mutation {
UpdateWorkflowActionExecuteAlgorithm(workflowActionId: ..., algorithmId: ...)
}
Retourne : WorkflowActionExecuteAlgorithm!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
workflowActionId | ID! | ✓ | — | — |
algorithmId | ID! | ✓ | — | — |
Exemple
mutation {
UpdateWorkflowActionExecuteAlgorithm(
workflowActionId: $workflowActionId
algorithmId: $algorithmId
) {
id
type {}
transitions {}
algorithm {}
}
}