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.
- Mode —
Append(default) adds the resolved value as a single element;Concatspreads a resolved list onto the target (it errors if the value source is not a list). - Position —
End(default) adds at the tail,Startat the head.
Tips
- Use
Concatto join two list assigns instead of folding element by element through aFlow Each. - Pair
Appendwith aFlow Eachupstream to fold a derived value over a collection without writing a Flow Transform.