Hi all, I'm modifying one of my existing flows and was curious if we can insert an OR condition into a filter. Previously my code looked like this which has worked fine:
@equals(item()?['Col1Example'], 'X')
Now I'm hoping to add the conditional without the need to branch off and retrieve the result, similar to this (which doesn't work):
@equals(item()?['Col1Example'], 'X') OR @equals(item()?['Col1Example'], 'Y')
Any thoughts or suggestions? Thanks!