[ad_1]
I was working on a flow and added a Trigger Condition which has 2 conditions in OR clause.

@or(equals(triggerOutputs()?[‘body/statecode’], 1), greaterOrEquals(triggerOutputs()?[‘body/closeprobability’], 80))
The flow is working as expected with the above conditions.
And then after some days, I added an extra condition in the OR clause as per new requirement.
@or(equals(triggerOutputs()?[‘body/statecode’], 1), equals(triggerOutputs()?[‘body/new_user’], true), greaterOrEquals(triggerOutputs()?[‘body/closeprobability’], 80))
Then the flow stopped working on the new trigger condition (new_user equals true) and it is working for the other 2 conditions.
I tried the below ways to debug the flow.
- Removed all the triggers conditions and added only the new trigger condition to test and no luck flow did not run.
- Created the test flow with the 3 conditions in the trigger and it has only simple compose action and it started working.
And did not…
[ad_2]
Source link



