我有一个现有的架构,例如
exports.OldCollectionSchema= new Schema({
Id: { type: Schema.ObjectId },
parentId: { type: Schema.ObjectId },
userId: { type : String },
userName: { type : String })
现在,我想通过添加一个新字段在两个场景中使用上述集合type
类型将是场景 a 或场景 b
所以我想获取旧记录 + type = "scenario a" 并在页面中显示
这怎么可能 ?