Split Out Node
Split a single item containing an array into multiple items — one per array element.
Written By pvdyck
Last updated 15 minutes ago
Split Out Node
The Split Out node takes a field containing an array and creates one output item per array element.
Parameters
Options
Example
Input: {"emails": ["a@x.com", "b@x.com"], "name": "Alice"}
With Include: All Other Fields, output becomes two items:
{"emails": "a@x.com", "name": "Alice"}{"emails": "b@x.com", "name": "Alice"}
Tips
- Use after API responses that return arrays in a wrapper object
- Pair with the Aggregate node to recombine items after per-item processing
Limitations
- None. Full support.