Ще TL;DR тъй като това се оказа адски езда. Опитах $elemMatch
, опитах $redact
(също с $$CURRENT и $$ROOT), опитах $map
, опитах рамката за агрегиране, опитах $project
.
Можете да прочетете всичко за това тук:https://www.devsbedevin.net/mongodb-find-findone-with-nested-array-filtering-finally/
TL;DR
Решението изглежда е да се използва рамката за агрегиране за филтриране на масива и замяна на свойството comments с резултатите. Това е по-просто, отколкото звучи:
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]}
}}}}
);
Резултатът:
{
"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
}
}
]
}