Skip to main content

Filter

The Filter node transforms a list or object. Pick an operation; the config shows only the fields that operation needs. The result lands in the output’s filtered field, with a count. Filter Array operators include equals, contains, starts/ends with, greater/less than (and or-equal), is empty / not empty, regex match, and in list / not in list (comma-separated values). Example: Filter Array on {{rss-1.items}} with Field to Filter title, Operator contains, Filter Value AI.

Split Out

The Split Out node turns a list into one item per element, so a downstream loop or node can handle each entry on its own. It outputs the elements in items, with a count. Example: Split Out with Input Data {{http-1.response.results}} and Fields To Split Out empty turns a results array into one item per result, ready to feed a loop.

Merge

The Merge node combines data from multiple input branches into one list. It waits for all connected branches, pulls the list out of each input (it looks for common fields like data, items, filtered, collected_results), and outputs the result as merged. Example: two API branches fetch users and subscriptions; Combine by Field on email joins them into one enriched list.

Next steps