Skip to main content
Adds to a list assign — the missing piece between Flow Assign (set a single value) and a full Flow Transform.

Configuration

  • Target assign — the list to mutate. If currently nil, it is initialised to []. Errors if the assign holds a non-list value.
  • Value source — where the value comes from. Same vocabulary as Flow Compose / Flow Assign:
    • Assign — copy the raw value of another assign.
    • Extract — traverse into a map/struct at a path.
    • Dated property — read a dated property through its facade.
    • Literal — a fixed JSON-serializable value.
  • ModeAppend (default) adds the resolved value as a single element; Concat spreads a resolved list onto the target (it errors if the value source is not a list).
  • PositionEnd (default) adds at the tail, Start at the head.

Tips

  • Use Concat to join two list assigns instead of folding element by element through a Flow Each.
  • Pair Append with a Flow Each upstream to fold a derived value over a collection without writing a Flow Transform.

Ports