flow
(required): The input flow that triggers the node to start executing.n
(optional, default: 1): An integer specifying the number of times the node should execute its output flow.reset
(optional): A flow input that, when triggered, resets the internal count back to zero.flow
: The output flow that is triggered n
times when the node is executed.count
: An integer output providing the current iteration count, starting from 0 and going up to n-1
.flow
input to the node that should trigger the DoN node to start.n
input to the desired number of iterations. If left unconnected, it will default to 1.reset
input if you want to be able to reset the count back to zero mid-execution.flow
output to the first node you want to execute in the loop.flow
output, connecting as many nodes as you need.count
output to access the current iteration number.{"text":"Hello"}
count
output from DoN if desiredreset
input in conjunction with error handling to re-run the loop if a failure occurs partway through.n
input will cause DoN to only execute once by default. Double check your input if your loop isn’t running as many times as expected.flow
output eventually cycle back to the flow
input with no exit condition.