Zoals JohnnyHK al zei, het antwoord in MongoDB:selecteer overeenkomende elementen van subcollectie legt het goed uit.
In uw geval zou het totaal er als volgt uitzien:
(let op:de eerste match is niet strikt noodzakelijk, maar het helpt met betrekking tot prestaties (kan index gebruiken) en geheugengebruik ($ kom tot rust op een beperkte set)
> db.xx.aggregate([
... // find the relevant documents in the collection
... // uses index, if defined on documents.x
... { $match: { documents: { $elemMatch: { "x": 1 } } } },
... // flatten array documennts
... { $unwind : "$documents" },
... // match for elements, "documents" is no longer an array
... { $match: { "documents.x" : 1 } },
... // re-create documents array
... { $group : { _id : "$_id", documents : { $addToSet : "$documents" } }}
... ]);
{
"result" : [
{
"_id" : ObjectId("515e2e6657a0887a97cc8d1a"),
"documents" : [
{
"x" : 1,
"y" : 3
},
{
"x" : 1,
"y" : 2
}
]
}
],
"ok" : 1
}
Voor meer informatie over aggregate(), zie http://docs.mongodb.org/manual /applicaties/aggregatie/