I’m building a waste compression app that sorts and compresses different waste types
Here, I want to create different sorted batches, each with a unique combination of waste sub type (PET, HDPE) and colour (white, blue, red)
I thought to use recursive backend workflows but I don’t think that’ll do the job, or would it?
How would you go about it??
If your colors are only 2 or 3 colors and they will never change so you can go for “Schedule backend workflow on a list”, if you expect the colors to grow dynamically then recursive backend workflow would do the job as well.
In my opinion, recursive workflow is better and more consistent although the 1st option is faster
1 Like
How can I set up the backend workflow to create different batches with every possible combination?