Hey team!
I couldn’t find documentation about this so I thought I’d ask here.
When you have a filter inside of a loop, and one of the iterations (let’s say #3 of 5) is filtered out, will the rest of the iterations run or does that one stop the rest from even being attempted?
In other words, if I’m trying to filter out files that are larger than 5 MB and these files come through…
1 MB, 2 MB, 5 MB, 3 MB, 4 MB
… will actions after the filter run for 1 MB and 2 MB then everything stops, or will actions run for 1 MB, 2 MB, 3 MB, and 4 MB.
Hope that makes sense! Thank you :)