Budu TL;DR protože se ukázalo, že to byla pekelná jízda. Vyzkoušel jsem $elemMatch
, zkusil jsem $redact
(také s $$CURRENT a $$ROOT), zkusil jsem $map
, Zkoušel jsem agregační rámec, zkoušel jsem $project
.
Vše si můžete přečíst zde:https://www.devsbedevin.net/mongodb-find-findone-with-nested-array-filtering-finally/
TL;DR
Řešením se zdá být použití agregačního rámce k filtrování pole a přepsání vlastnosti komentáře s výsledky. Je to jednodušší, než to zní:
db.getCollection('posts').aggregate(
{$match: {"author.id": authorId}},
{$addFields : {"comments":{$filter:{ // We override the existing field!
input: "$comments",
as: "comment",
cond: {$eq: ["$$comment.state.deleted", false]}
}}}}
);
Výsledek:
{
"author": {},
"message": "This is post1",
"comments": [
{
"message": "Im number 1!!!",
"state": {
"deleted": false
}
},
{
"message": "tHIS IS GREAT!",
"state": {
"deleted": false
}
},
{
"message": "I can type better than you guys",
"state": {
"deleted": false
}
}
]
},
{
"author": {},
"message": "This is post 2",
"comments": [
{
"message": "I wanna have your children",
"state": {
"deleted": false
}
}
]
}