我一直在尝试合并文档结果。这是我的查询和数据
{"_id":"5c21ab13d03013b384f0de26",
"roles":["5c21ab31d497a61195ce224c","5c21ab4ad497a6f348ce224d","5c21ab5cd497a644b6ce224e"],
"agency":"5b4ab7afd6ca361cb38d6a60","agents":["5b4ab5e897b24f1c4c8e3de3"]}
这是查询
return db.collection('projects').aggregate([
{
$match: {
agents: ObjectId(agent)
}
},
{
$unwind: "$agents"
},
{
$lookup: {
from: "agents",
localField: "agents",
foreignField: "_id",
as: "agents"
}
},
{
$unwind: {
path: "$roles",
preserveNullAndEmptyArrays: true
}
},
{
$lookup: {
from: "roles",
localField: "roles",
foreignField: "_id",
as: "roles"
}
},
{
$lookup: {
from: "agencies",
localField: "agency",
foreignField: "_id",
as: "agency"
}
}
])
如您所见,项目集合中的一个条目具有两个数组,在对每个条目执行查找之前,它们将被展开,然后在“ agency”字段上执行最终查找。
但是,当我从该查询中获得结果时,我得到的文档数等于角色数。例如,我正在聚合的项目有3个角色和1个代理。因此,我得到了一个由3个对象组成的数组,每个对象一个,而不是一个包含所有三个角色的Roles数组的单个文档。代理商数组也可能有多个值。
迷路了...
答案 0 :(得分:1)
您不必在$lookup之前运行$unwind
。 localField
部分指出:
如果您的localField是一个数组,则可能要在管道中添加$ unwind阶段。否则,localField和foreignField之间的相等条件为foreignField:{$ in:[localField.elem1,localField.elem2,...]}
因此,基本上,如果您没有例如在$unwind
上运行roles
,则将获得roles
的数组,而不是每个角色的文档,ObjectIds
被替换为第二个集合中的对象数组。
因此您可以尝试以下聚合:
db.collection('projects').aggregate([
{
$match: {
agents: ObjectId(agent)
}
},
{
$lookup: {
from: "agents",
localField: "agents",
foreignField: "_id",
as: "agents"
}
},
{
$lookup: {
from: "roles",
localField: "roles",
foreignField: "_id",
as: "roles"
}
},
{
$lookup: {
from: "agencies",
localField: "agency",
foreignField: "_id",
as: "agency"
}
}
])