I'm trying to learn MongoDB and it's been awesome so far. However I ran into a situation and I'm not too sure how to solve it. Hopefully someone could help me out and thanks in advance.
I wanted to get records that the (entire) array value is within the query. For example:
record 1 :
{"name" : "Mango Shake",
"ingredients" : [{"type" : "fruit", "name" : "mango"},
{"type" : "milk", "name" : "soy milk"}]}
record 2 :
{"name" : "Mango Banana Shake",
"ingredients" : [{"type" : "fruit", "name" : "mango"},
{"type" : "milk", "name" : "soy milk"},
{"type" : "fruit", "name" : "banana"}]}
record 3:
{"name" : "Milk Shake",
"ingredients" : [{"type" : "milk", "name" : "soy milk"}]}
then i would have a query something like
{"ingredients" : {$all : [{"type" : "fruit", "name" : "mango"},
{"type" : "milk", "name" : "soy milk"},
{"type" : "fruit", "name" : "strawberry"}]}}
because I have mango, soy milk and strawberry. So I wanted to know which shakes I can do. Apparently this doesn't return anything because the query cannot have extra stuff. If I use $in then all will return, but I cannot do mango banana shake because I don't have a banana..
So what I only need is the first and last one. Any idea? Appreciate it :)