TL;DR dal momento che questo si è rivelato essere un inferno di corsa. Ho provato $elemMatch
, ho provato $redact
(anche con $$CURRENT e $$ROOT), ho provato $map
, ho provato il framework di aggregazione, ho provato $project
.
Puoi leggere tutto qui:https://www.devsbedevin.net/mongodb-find-findone-with-nested-array-filtering-finally/
TL;DR
La soluzione sembra essere quella di utilizzare il framework di aggregazione per filtrare l'array e sovrascrivere la proprietà commenti con i risultati. Questo è più semplice di quanto sembri:
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]}
}}}}
);
Il risultato:
{
"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
}
}
]
}