Daniel Gazit
02/04/2020, 2:52 PMJoe Schmid
02/04/2020, 4:23 PMitems = [1, 2, 3, 4]
previous_results = None
for i in items:
previous_results = flow.run(parameters={
"item_to_process": i,
"previous_results": previous_results})
Hope this helps. Let me know if that makes sense.Daniel Gazit
02/06/2020, 6:16 AM