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

ParameterDescription
Field To Split OutThe name of the field containing the array to split (e.g., data, results)
IncludeWhat additional data to include with each split item: No Other Fields, All Other Fields, or Selected Other Fields

Options

OptionDescription
Destination Field NameCustom name for the output field (defaults to the original field name)
Disable Dot NotationWhen enabled, treats dots in field names as literal characters instead of nested paths
Include BinaryPreserves binary data in each split item

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.

Related