我有以下架构,其中项目类型可能会有所不同,并在connections.kind
中提及。
var userSchema = new Schema({
name: String,
connections: [{
kind: String,
item: { type: ObjectId, refPath: 'connections.kind' }
}]
});
var organizationSchema = new Schema({ name: String });
我正在尝试进行动态查找,以便填充项目对象。但这似乎不起作用。
db.users.aggregate([
{
$lookup:{
from: '$connections.kind',
localField: 'connections.item',
foreignField: '_id',
as: 'items'
}
}
])
我知道我可以用mongoose.populate
来做,但想知道是否有可能使用$ lookup
答案 0 :(得分:3)
截至目前,你不能。 from
字段不能是表达式,必须是字符串文字。但是,您可以在此处跟踪一个未解决的问题:https://jira.mongodb.org/browse/SERVER-22497。