我需要加入/查找三个收藏。
“组”
“用户”
“链接的标签”
“相片”
我从收藏组中获取所有组。
group {
id: 1,
start: 10.12,
linkedUsers : [1,2,3,4,5]
}
然后我需要从用户中查找/加入
user {
id: 1,
name: ""
}
然后从linkedTags
tag {
userId: 1,
rounds: 3,
time: 180
}
然后从“照片”
photo {
userId: 1,
location: ""
}
所以我需要这样:
Group {
id: 1,
start: 10.12,
linkedUsers: [1,2,3,4],
users: [
1:{
id: 1,
name: "",
rounds: 3,
time: 180,
photos: [
1: {
id: 1,
location: ""
}
]
}
]
}
到目前为止,这是我尝试过的。我认为我需要分阶段进行,但是我还没有弄清楚该怎么做。
db('groups').aggregate([
{
$lookup: {
from: 'users',
localField: 'linkedUsers',
foreignField: 'id',
as: 'users'
}
},
{
$unwind: "$users"
},
{
$lookup: {
from: 'photos',
localField: 'linkedUsers',
foreignField: 'id',
as: 'photos'
}
},
{
$unwind: "$photos"
},
{
$lookup: {
from: 'linkedTags',
localField: 'linkedUsers',
foreignField: 'id',
as: 'tags'
}
},
{
$unwind: "$tags"
},
{ $group: {
_id: null,
id: "$id",
start: '$start',
linkedUsers: "$linkedUsers",
users: {$push: {
id: "$users.id",
name: "$users.name",
rounds: "$tags.rounds",
time: "$tags.time",
photos: {$push: {
id: "$photos.id",
location: "photos.location"
}}
}}
}}
])
编辑1:
这是我遇到的第一个错误:
MongoError:字段“ id”必须是累加器对象
我已经读过了,但是我不明白它们是如何融合在一起的。
编辑2:
我通过将分组包装在_id中来解决此问题:{}
现在我遇到无法识别的表达式“ $ push”
编辑3:
在Atlas 4.0.4 Enterprise上运行。
最佳答案
您可以使用以下汇总
db.group.aggregate([
{ "$lookup": {
"from": "users",
"let": { "linkedUsers": "$linkedUsers" },
"pipeline": [
{ "$match": { "$expr": { "$in": ["$_id", "$$linkedUsers"] } } },
{ "$lookup": {
"from": "tags",
"let": { "userId": "$_id" },
"pipeline": [
{ "$match": { "$expr": { "$eq": ["$userId", "$$userId"] } } }
],
"as": "tags"
}},
{ "$lookup": {
"from": "photos",
"let": { "userId": "$_id" },
"pipeline": [
{ "$match": { "$expr": { "$eq": ["$userId", "$$userId"] } } }
],
"as": "photos"
}}
],
"as": "linkedUsers"
}}
])
编辑:删除变量中的空格
关于arrays - $ lookup与嵌套文档,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53498454/