I'm trying to add a condition where an action will only execute when three fields are not blank. I thought the following code would work but it evaluates as "TRUE" when I there is clearly values in all of the relevant fields.
@and(not(empty(triggerBody()?['Approver_1 Email'])), not(empty(triggerBody()?['Approver_2 Email'])), not(empty(triggerBody()?['Approver_3 Email'])))
Any help would be greatly appreciated.