Flow controls
Parallel
Run collection of tasks in parallel, without waiting until the previous function has completed.
Type: parallel/v1
Map
Produces a new collection of values by mapping each value in list through defined task, in parallel. When execution is finished on all items, the `map` task will return a list of execution results in an order which corresponds to the order of the source list.
Subflow
Starts a new job as a sub-flow of the current job. Output of the sub-flow job is the output of the task.