I have a SharePoint List "When Item is Created or Modified" flow that I wish to run only when the value of a Yes/No column named 'Notify' in that record is true. With no Trigger Condition specified, the flow functions as expected, however, it executes with any modification. Following several examples, I input the following expression in the Trigger Condition field:
@equals(triggerBody()?['Notify'], true)
This does not appear to be the correct syntax, as the expression always evaluates to false, and the flow is never executed. Can someone please help me with the correct syntax for the Trigger Condition to achieve what I'm trying to do? Obviously, I can check the value inside the flow using a Condition step, but I would prefer not to execute the flow at all unless that condition is met (save on unnecessary executions).
Thanks!