Decisional
Decisional Further Reading
5min
here's a list of things that you probably didn't know you can do with the decisional action setting a condition evaluation order if multiple conditions are evaluated as true when a decisional action is reached, the flow of execution will continue only on the first condition's branch to choose which condition should be evaluated first, you can reorder conditions in the configuration organizing cases for better visualization sometimes you might implement complex business logic using the decisional and all those branches might overlap and turn into something that is hard to explain visually when this happens, you can use a few join actions to clear up the flow overlaps and make it more readable use an ordered staircase like arrangement for the cases to improve the appearance creating a do while logic if your use case requires some logic to be executed at least once before checking for a stopping condition then a do while sequence might be something you would find useful you only need a decisional and a join to implement such logic in procesio you can also skip the extra join action but it's less pretty like this