我有两个集合。用户和课程
用户集合
[{
"_id": "11111",
"name": "john",
},
{
"_id": "11112",
"name": "smith",
}]
课程集合
[{
"_id": "00011",
"user_id": "11111",
"location_id": "9999",
},
{
"_id": "00012",
"user_id": "11111",
"location_id": "8888",
},
{
"_id": "00013",
"user_id": "11111",
"location_id": "7777",
},
{
"_id": "00014",
"user_id": "11112",
"location_id": "7777",
}]
如果我应用区域 ID 7777 的过滤器,那么我希望得到以下输出。如果我应用区域 ID 7777 和 8888,我希望得到相同的输出。所以基本上,我想要所有用户区域,如果它至少匹配一个区域 ID。如果没有区域 ID 过滤器,我会得到正确的响应
预期结果:
[
{
"_id": "11111",
"name": "john",
"regions": [
{
"_id": "00011",
"user_id": "11111",
"location_id": "9999"
},
{
"_id": "00012",
"user_id": "11111",
"location_id": "8888"
},
{
"_id": "00013",
"user_id": "11111",
"location_id": "7777"
}
]
},
{
"_id": "11112",
"name": "smith",
"regions": [
{
"_id": "00014",
"user_id": "11112",
"location_id": "7777"
}
]
}
]
以下是我的汇总查询
db.user.aggregate([
{
"$match": {}
},
{
"$lookup": {
"from": "region",
"localField": "_id",
"foreignField": "user_id",
"as": "regions"
}
},
{
"$addFields": {
"regions": {
"$filter": {
input: "$regions",
as: "region",
cond: {
$in: [
"$$region.location_id",
[
"7777"
]
]
}
}
}
}
}
])
实际结果(如果我应用过滤器region_id:7777,我将获得以下结果)
[
{
"_id": "11111",
"name": "john",
"regions": [
{
"_id": "00013",
"user_id": "11111",
"location_id": "7777"
}
]
},
{
"_id": "11112",
"name": "smith",
"regions": [
{
"_id": "00014",
"user_id": "11112",
"location_id": "7777"
}
]
}
]