- Filter with a simple
if-condition(see if-conditions) - Process one at a time: rename fields, create a case, etc.
Scatter

Gather
The gather action ONLY works downstream of a scatter action.
It will not work if you try to gather data that was not scattered.
null.
To use gathered data, reference it in a downstream action (for example, a reshape action) and use that downstream action’s result.
Scatter, filter, then gather
In this example, we’ll scatter a list of integers, filter out the odd numbers with a simpleif-condition on a reshape action, then gather the even numbers back into a single list.
Filter
Filter out the odd numbers with a simple And the if-condition to:
if-condition on a reshape action.
Set the inputs for the reshape action to:
Use gathered output
Because gather returns
null, add a downstream action to consume the gathered values.Use the downstream action’s output as the final result for this branch (instead of reading ACTIONS.gather.result directly).


