Aggregation iterator

[data/array/Aggregation iterator]


Iterates through items of an array, specifically for the purpose of being aggregated later.


Keywords: loop, step, aggregation

Input ports

  • array: any[]

    Recieves array to be iterated over. Example: [1,2,3]

Output ports

  • item: any[][number]

    Sends current item. Example: 1

  • is last: boolean

    Sends flag whether current item is the last one. To be connected directly to the release input of a flow/Aggregator.

Last updated