如何在数组项目的字段中查找$ lookup字段,然后作为子文档返回,包括结果(作为字段)以及其他字段

时间:2018-12-08 06:31:58

标签: mongodb mongoose aggregation-framework

我想转一下:

const schema = new mongoose.Schema({
    requirements[{
        requirement: {
            type: mongoose.Schema.Types.ObjectId,
            ref: "Document",
        },
        expires: Date
    }]
})

(使用和聚合管道)。

[{
    requirements: {
        requirement: {_id: XXX, documentName: XXX},
        expires: XXX
    }
},]

谢谢!

0 个答案:

没有答案