Hello, i have a problem which i can’t find a solution to.
How can i accumulate all the data after loop over items ?
The problem is that the amount of items varies. On screenshoot you may see there are 25 items incoming, being processed by batch size of 10. This results in 3 execution of Respond to Webhook module.
How may I manage so the respond to webhook module does send all the data accumulated at once, resulting in only one execution of it?
I tried to accumulate it using Code node, which also got executed 3 times.
Sounds like you just need to append all of the data to a single variable and then send it. There’s multiple ways to do this, but I think you could use the Merge node to combine all the data, and/or the Set node to store values. During each loop have it store the value and add whatever new value to the previous value
Well, I think it is beacuse i have some branches within the loop itself.
Beacuse VisiSite2 and VisitSite3 have error paths, all the Success data is processed and passed to Done branch, then the Error outputs are sent and again passed to Done branch.
But still i have no idea how to solve that problem.