Skip to main content
Takes a set of entities and branches the data based on the supplied path. Use this step when a single item contains a list and you want each entry in that list to continue through the rest of the route as its own item, for example to turn one order that contains many lines into one item per line. Every entry matched by the path becomes a separate branch that flows on independently.

Fields

Sample data

This step splits the items passing through a route, so it runs as part of a route rather than on its own. A typical configuration that turns each product in a products list into its own item looks like this:
FieldValue
Pathproducts.*
With this configuration, an incoming item that holds a products list of two products is split into two separate items, one per product. Each branch carries just that product’s data and continues through the rest of the route on its own.