Configuration
- List source — where the list lives (usually an Assign of a previously-loaded list).
- Key source — how to compute each item’s key. Resolved against
a single binding named
itemholding the current list element — use Extract with keyitemand a path, or Dated property with keyitemfor dated-property fields likeemployee_noso the canonical facade kicks in. - Match source — the value to compare keys against. Resolved against normal assigns.
- Output assign — where the found item (or
nilon miss) is written. - On miss — Set to nil (default) writes
niland continues; Halt flow stops the run with an error.
Tips
- Iterating? Put the FlowLookup inside a FlowEach to swap keys for full records per item.
- For two-level drilling (employee → mapping → external_id), chain two FlowLookups plus a FlowCompose to pluck the final field.