The Parallel expression allows you to run sets of expressions at the same time concurrently. It is able to spawn branches or use a for expression within in.
There are two types of parallel expressions:
A parallel with branches is useful when you need to run a specific number of expressions simultaneously, each with their own set of actions. The number of branches for this type of parallel does not change dynamically, it’s fixed.
A parallel with for loop will run every expression, similar to a regular For Loop expression. However, it will run all iterations at the same time for every item in the list.
Add a Parallel Step, select the type of parallel you need. If you select branches, you will add as many branches as you need for parallel executions of expressions. If you select for loop, bind the iterable, define loops variables, and execute iterations in parallel.


Log an event and send an email concurrently
Update a CRM and Slack concurrently
Run actions for each in a list in parallel