Configuration
- Source list assign — assigns key holding the list to iterate.
- Current item assign — the loop body reads the item from here.
Control flow
- Halt branch inside an iteration (e.g. from a Flow Guard) stops that iteration but the loop continues with the next item.
- Halt flow (from a Flow Guard set to halt flow, or any unrecoverable error) stops the whole run immediately.
Tips
- Pair with Flow Filter first to narrow the list down — iterating a filtered list is usually cheaper and clearer than guarding inside the loop body.