Conditional Rule Execution #296
-
Hi, I wanted to implementing a chain of three rules, where the second and third rule depends on the result of the first rule. Consider this use case: For this, I am creating a new fact using Is there a better way to implement this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you specify the priority of the rules so that |
Beta Was this translation helpful? Give feedback.
If you specify the priority of the rules so that
MinorOrNotRule
is a higher priority then the other rules an each rule has a high priorityisMinor
check then while technically both rules will run only theisMinor
check would run.See also #336 for my proposal on how the engine could more easily support this.