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.
And did not…