For Each

Iterate over each item in a list.

Runs everything downstream once per list item, in parallel.

Inputs

  • ListrequiredList<T>. Uses this list as the sequence to iterate over. The node runs once per item in the list and preserves each item’s value for the downstream branch of that iteration.

Outputs

  • ItemT. Represents the current list element for the active iteration, so downstream nodes receive one item at a time.

Example use cases

Bulk re-tag

Iterate a DSL Query result and apply Change Field to every matching ticket.

See also