我想用contentRef
填充structureRef
。但是我不想检索整个文档,而只检索映射这两个对象的对象(我只想要一个内容部分,而不是完整的内容文档)。
这甚至有可能吗?
$structureSchema.virtual('sections.questionGroups.possibleAnswers.content', {
ref: 'Content',
localField: 'sections.questionGroups.possibleAnswers.contentRef',
foreignField: 'content.structureRef',
justOne: true
});