Retrieve all successful rules #350
Unanswered
good-times-coming
asked this question in
Q&A
Replies: 1 comment
-
You can traverse RuleResultTree or use Linq. Each rule execution has a IsSuccess field either true/false. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to get the success events from all rules that succeed in a particular workflow?
Given input:
{ "Parameter": { "Answers": [10,8,3] }, "InputRule": "input1" }
I'd like to be able to get back an IEnumerable with values {1,2,3}, corresponding to the success events of each rule that passed.
Can I do anything to get a list of all the rules that pass, besides walking the whole RuleResultsTree?
Beta Was this translation helpful? Give feedback.
All reactions