Block

The Block action node can be used to group a set of action nodes and control their execution.

Properties

Property
Description

Execution Mode

There are three options: Sequential (default): When running in sequential mode, the action nodes behave as they would in any other block node.

Parallel: All action nodes are executed in parallel. Useful when fetching data from multiple third parties. If one of the children fails, the entire block will fail. Any catch exception blocks added as direct children to the block will be ignored in this execution mode.

First to finish: All children are executed in parallel, but the block will finish as soon as the first child is done. Note that all the siblings will still run until finished. Any errors occurring in any of the children will be ignored on block level. Any catch exception blocks added as direct children to the block will be ignored in this execution mode.

Last updated

Was this helpful?