Skip to main content
Collapses a timeline with parallel ID streams into one combined timeline: at every cutover date, the values of all streams active on that date are concatenated into a single list. Use it when one field carries parallel histories per source row (the “With ID” silos) and you need the combined set over time — for example, all titles across simultaneous employments.

Inputs

  • Data — the dated properties to merge. Wire an Attribute node (or anything emitting dated properties) carrying entries with IDs.

Output

  • Result — one dated property per cutover date, newest first. Each carries the concatenated list of every stream’s active value at that date, ordered oldest stream first. Streams whose active value is empty at a date are left out; when every stream is empty the value is the empty list. Consecutive equal lists are merged into one entry.

Tips

  • Chain a Uniq node after this one if the same value can appear in several streams and you want it once.
  • Entries without an ID form a stream of their own, so un-siloed timelines pass through (values list-wrapped) unchanged in shape.

Ports