Skip to main content
Concatenates every wired upstream timeline into one dated property stream, sorted newest first. A dated property has no end date — it is closed by the entry that follows it, and terminated by a nil-valued entry. Pair this node with Update to close a timeline: wire the timeline into one input, and an Update that stamps the closing date and a nil value onto a single entry into another. The merged result carries both, so the original entry now ends where the terminator begins.

Inputs

  • Data — variadic. Wire any number of upstream timelines; every entry they emit ends up in the result.

Output

  • Result — every input entry, concatenated and sorted newest first (non-nil values before nil values at the same date).

Notes

  • Nothing is deduplicated. Entries that share a date and group id all survive — resolve an ambiguous timeline explicitly with Timeline Uniq downstream rather than relying on this node to pick a winner.
  • Multi-id timelines merge cleanly; each entry keeps its own id.
  • Inputs that are unwired, empty, or not dated properties are skipped. With nothing wired the output is empty.

Ports