Sau khi thảo luận trong trò chuyện, có vẻ như vấn đề chung là làm thế nào để chọn tài liệu từ bộ sưu tập chính dựa trên 2 tiêu chí của các tài liệu lịch sử liên quan:
db.main.aggregate([
{$lookup: {
from: "history",
localField: "history_id",
foreignField: "history_id",
as: "History"
}},
{$match: {
$expr: {
$eq: [
false,
{$reduce: {
input: "$History",
initialValue: false,
in: {
$or: [
"$$value",
{$and: [
{$eq: [
"$$this.user_id",
ObjectId("5e4a8d2d3952132a08ae5764")
]},
{$gte: [
"$$this.date",
"$date"
]}
]}
]
}
}}
]
}
}}
])