在简化的数据模型中,我有三种类型的文档:项目,用户和分配。用户和项目存储在自己的集合中,而分配则嵌入在项目中。示例项可能如下所示:
{
"_id" : ObjectId("xxx"),
"name" : "yyy",
"assignments" : [
{
"assignmentDate" : ISODate("2018-01-11T10:05:20.125Z"),
"user" : ObjectId("zzz"),
},
{
"assignmentDate" : ISODate("2018-01-12T10:05:20.125Z"),
"user" : ObjectId("iii"),
}
]
}
我想查询当前分配给给定用户的所有项目。这个聚合管道完成了这项工作:
db.Item.aggregate([
{
$addFields: {
currentAssignment: { $arrayElemAt: ['$assignments', -1] }
}
},
{
$lookup: {
from: 'User',
localField: 'currentAssignment.user',
foreignField: '_id',
as: 'currentUser'
}
},
{
$match: {
'currentUser.name': { $eq: 'admin' }
}
}
]);
如何使用Doctrine ODM Aggregation Builder构建它? Stage::lookup
方法仅接受from
参数。如果我在汇总管道(在这种情况下为currentAssignment
)的计算字段上使用它,则会产生:
arguments to $lookup must be strings, localField: null is type null
我们也欢迎使用其他解决方案(如果可能,甚至没有聚合?)来检索所描述的数据集。