Hello everybody,
I have the following condition in my flow
@and(triggerBody()?['Active'], bool(1), not(empty(item()['Email'])))
It should return true if the 'Active' field is true AND if the 'Email' field is not empty, but upon running it returns the following error
"Unable to process template language expressions for action 'Condition' at line '1' and column '1964': 'The template language function 'and' expects all of its parameters to be booleans. Found invalid parameter types: 'Null'.'."
'Active' is a boolean field but the 'Email' field is a string. The function is just an emptyness check on the field.
Thanks for any help!