I'm trying to insert OR statements within some AND statements on my search and am having trouble nailing down the operators I need to use.
What I'm essentially trying to do is state the following (cue the pseudo)
query = "nematode" && (meta_M == "North" || meta_M == "South") && (meta_N == "Category value 1" || meta_N == "Category value 2")
My attempts seem to have been generating wide OR statements which inflates my initial query for nematode (425 results) into 1,000+ results instead of reducing it to a sub-set of the original results.
I've consulted http://docs.funnelback.com/12.0/query_operator.html but just need that final push.