When setting up multiple filters in a query, it seems like it's always an "And" statement. Is there a way to configure an "or " statement?
Multiple filters will indeed me combined and behave as one single AND-filter. The only way to achieve an OR-filter is by applying a single regular expression with the or operator: x|y|z. But this is then limited to one single column and not all filtering capabilities can be achieved through a regular expression. Far from ideal, but could cover some cases.
There are plans to get this feature added though.