Hi there,
I am using a filter array like below (the filter condition on the left hand side is an integerr value)

this is the left hand side's expression -
item()?['Streets']?[0]?['Id']
I want to filter the array to where this value is 1 or 3. So I have tried the below in the right hand side but the flow fails
or(1,3)
It givess the fail reason as
The execution of template action 'Filter_array_4' failed: The evaluation of 'query' action 'where' expression '@equals(item()?['Streets']?[0]?['Id'], or(1, 3))' failed: 'The template language function 'or' expects all of its parameters to be booleans. Found invalid parameter types: 'Integer'.'.
Any ideas what i might be doing wrong here?
thank you
SD