Vì bạn phải lọc tài liệu của mình bằng các nhận xét created_date
thì bạn phải bắt đầu tổng hợp của mình với bộ sưu tập nhận xét thay vì đăng và tham gia các posts
với $lookup
tổng hợp
const todayForEvent = moment().startOf('day').utc().toDate()
db.comments.aggregate([
{ "$match": { "created_date": { "$gte": todayForEvent } }},
{ "$lookup": {
"from": "posts",
"localField": "_id",
"foreignField": "comments",
"as": "posts"
}},
{ "$unwind": "$posts" },
{ "$replaceRoot": { "newRoot": "$posts" }}
])