flow
: The incoming flow that triggers the node to start iterating over the array.array
: The array to iterate over. By default, it is set to an empty array.completed
: The outgoing flow that is triggered when the iteration is finished.loopBody
: The flow that represents the actions to be performed on each item in the array.index
: The current index of the item being processed in the array.valueType
: The type of the items in the array. This is used to determine the type of the “Array Item” socket.valueTypeOptions
: An object that specifies the available types for the “Array Item” socket. The default options are: “string”, “number”, “float”, “boolean”, “object”, and “array”.array
input of the For Each node.loopBody
output to the nodes that represent the actions you want to perform on each item in the array.index
output to access the current index of the item being processed, if needed.completed
output to the nodes that should be executed after the iteration is finished.valueType
option to match the type of the items in your array.array
input of the For Each node.loopBody
output to a Multiply node.completed
output of the For Each node to any nodes that should be executed after the multiplication is done.loopBody
output to the nodes that perform the desired actions on each array item.index
output if you need to access the current index of the item being processed.valueType
option to match the type of the items in your array for better type safety and clarity.array
input is properly connected and contains the expected data.loopBody
output are correctly processing each array item and passing the results to the next nodes.