I have a requirement where I need to run a MongoDB query like the following:

db.collection.find({ $or : [{"field1" : "value1"}, {"field2" : "value2"}], 
$or : [{"field3" : "value3"}, {"field4" : "value4"}]}) 

i.e.

(field1 == value 1 or field2 == value2) and (field3 == value3 or field4 
== value4) 

I want to achieve this through criteria chaining because the query gets formed dynamically from different parts of the code. But if I try doing something like the following

criteria = Collection.any_of({"field1" => "value1"}, {"field2" => 
"value2"})
criteria = criteria.any_of({"field3" => "value3"}, {"field4" => "value4"}) 

I get the resultant query where all these are combined into a single $or statement like

db.collection.find({ $or : [{"field1" : "value1"}, {"field2" : "value2"}, 
{"field3" : "value3"}, {"field4" : "value4"}]}) 

What is the way to achieve "and" of the two "any_of" using criteria chaining?

link|improve this question
which version of Mongoid you use ? – shingara Jan 19 '11 at 10:12
I use 2.0.0.beta.20 – Rakeesh Jan 19 '11 at 11:41
There is an issue with the way any_of / $or is handled by Mongoid. Have opened an issue on Github: github.com/mongoid/mongoid/issues/issue/569 – Rakeesh Jan 19 '11 at 14:43
feedback

2 Answers

You can do it with avoid any_of.

criteria = Collection.where('$or' => [{"field1" => "value1"}, {"field2" => "value2"}])
criteria = criteria.where('$or' => [{"field3" => "value3"}, {"field4" => "value4"}])
link|improve this answer
1  
Tried this. But it also yielded the same result where all the query fields got merged into a single "$or" query - similar to using any_of. – Rakeesh Jan 19 '11 at 11:49
and you can success to do you request on MongoDB console ? – shingara Jan 19 '11 at 18:30
Yes - works from the console. – Rakeesh Jan 19 '11 at 19:19
feedback

you can write this with mongoid 2.4.0:

  Collection.all_of({"$or" => [{"field1" => "value1"}, {"field2" => "value2"}]}, {"$or" => [{"field3" => "value3"}, {"field4" => "value4"}]})
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.