Sort bundles

I want to grab all files from a Google Drive, and then process them.
I want to process them in sequential order based upon the file name.

How would I accomplish sorting them before processing?

2 Likes

Ahhh… finally. Solved! Not sure if this is the best way but this seems to do the trick!

  1. Add array aggregator to load bundle information into an array
  2. Add set variable module to sort the array created in the prior step - {{sort(100.array; “name”)}}
  3. Add an iterator module to split out the array back into individual bundles

3 Likes