虚拟填充仅文档的一部分

时间:2019-12-21 22:32:39

标签: node.js mongoose

我想用contentRef填充structureRef。但是我不想检索整个文档,而只检索映射这两个对象的对象(我只想要一个内容部分,而不是完整的内容文档)。

这甚至有可能吗?

$structureSchema.virtual('sections.questionGroups.possibleAnswers.content', {
    ref: 'Content',
    localField: 'sections.questionGroups.possibleAnswers.contentRef',
    foreignField: 'content.structureRef',
    justOne: true
});

0 个答案:

没有答案