Iteration modes
Wire exactly one of these output ports to the start of your subgraph:- Loop Values — each iteration receives one inner value of a dated property. Lists are unrolled element-by-element; scalars run once. Results are collected back into the same dated property structure.
- Loop Properties — each iteration receives a whole dated property.
Use this when the per-property metadata (
valid_from,id) matters.
Inside the subgraph
- End the subgraph with at least one End node — that’s how the result leaves each iteration.
- At Date and At Index inside the loop will pick up the iteration’s
valid_fromand index automatically.