Skip to main content
Turns a map into a list of entries so a Flow Each can walk it. Flow Each iterates lists only. After building a map with Flow Map Put, put this in between to get one entry per key.

Configuration

  • Source — the map to expand (usually an Assign).
  • Output assign — where the entry list is written.
Each entry carries key, value, items and count. Use items when the map holds lists (Flow Map Put in Append mode) and value when it holds single values (Put mode). Entries come out sorted by key, so two runs over the same data produce the same order.

Tips

  • The entry shape matches Flow Group By’s output, so a loop written against one works unchanged against the other.
  • Inside the loop, reach the value with Extract and path items (or value), then feed that into an inner Flow Each or a Flow Compose.

Ports