Hi!
I've read the selectors documentation but I can't find how to deal with a situation where you need to do something like this, but with PW pages:
SELECT * FROM products WHERE product_name = 'Computer' OR product_category = 'Electronics'
There are 2 OR operators documented, "matching one field or another" ("field1|field2=value") and "matching more than one value in the same field" ("field=value1|value2"), but none of them can do what I need.
I tried something like this: "field1=value1|field2=value2", but of course it didn't work.
I know I could filter the resulting array, but I would be pulling unwanted data from the db and it would break the pagination system.