This namespace contains 22 node(s).

Available Nodes

  • Asset Collection - A curated collection of assets of a single type. Streams each item one at a t…
  • Chunk - Group every N items into a list and emit as a batch. Trailing partial batch i…
  • Collect - Collect items until the end of the stream and return them as a list.
  • Count - Emit the total number of items when the stream ends.
  • Cross - Emit the cartesian product of two iteration sources within their common parent.
  • Distinct - Drop duplicate items from a stream. Optional key expression for grouping.
  • Drop - Skip the first N items of a stream, pass the rest through.
  • Drop While - Drop items while a predicate is truthy, then pass everything after.
  • Fallback - Substitute a fallback value when the input is null or undefined. Does not cat…
  • Filter (Expression) - Pass items through when a safe expression returns truthy (comparisons, boolea…
  • Filter Equal - Pass items through only when they equal a target value.
  • For Each - Iterate over a list and emit each item sequentially.
  • If - Conditionally executes one of two branches based on a condition.
  • Last - Emit only the final item of a stream.
  • Repeat Count - Emit N sequential ticks without needing an input list.
  • Repeat Value - Emit the same value N times without building a list first.
  • Reroute - Pass data through unchanged for tidier workflow layouts.
  • Switch - Multi-branch routing: match a value against cases and route to the matching o…
  • Take - Pass through the first N items of a stream and stop.
  • Take While - Pass items through while a predicate is truthy. Stops at the first failure.
  • Tap - Passthrough that logs each item to the console as a side effect.
  • Zip - Pair items from two independent iteration sources by matched index within the…