Ниже приведена моя схема
const ParentSchema = new Schema({
name: String
});
const ChildSchema = new Schema({
name: String,
parent:{ type: Schema.Types.ObjectId, ref: 'parent' }
});
ChildSchema
.virtual('parentId')
.get(function() {
return this.parent
});
.set(function(value) {
this.parent = value
});
Я использую
"mon goose": "5.9.5",
В запросе на обновление виртуальный установщик не работает