Hi Neutrinos Community,
I’m working with Neutrinos Reels and need help with implementing branching logic within my workflow. Specifically, I want to evaluate certain conditions, and if they are not met, I need to stop the subsequent execution of the workflow. Is there a way to set up branching conditions and halt the workflow if the conditions are not satisfied?
2 Likes
You can add a condition by double-clicking on an edge (connector link). Provide a name for the condition to easily identify it, select the operands and operator based on your requirements, and save the condition. Finally, save the workflow to deploy the changes.
2 Likes
I tried adding a condition by double-clicking on the edge (connector link), providing a name, selecting the operands and operator, and saving the condition. While this successfully evaluates the condition, if it’s not satisfied, it only skips the very next rule in the workflow and continues executing the others.
My requirement is to completely stop the execution of the subsequent rules if the condition is not met. Is there a way to achieve this?
1 Like
Please share a screenshot of you flow
1 Like
If the condition evaluates to STP, I want to completely stop the subsequent execution of the workflow, particularly for determining the premium.
1 Like
Please share the workflow which includes the condition.
1 Like
I resolved the issue by separating the rules. I created individual rules for the knockout conditions and non-STP conditions first. Then, I consolidated all condition checks into a single rule. Finally, I placed this Premium Eligibility Check rule immediately before the premium calculation step. This allowed me to implement the branching condition successfully and stop subsequent execution when necessary.
2 Likes