我的架构定义如下:
var nSchema = new Schema({
message: String,
creationDate: { type : Date, default: Date.now }
});
var sSchema = new Schema({
_id: {type:ObjectId, auto: true },
dataId: { type:String, unique: true },
notes: [nSchema]
}
对于每个dataId
,可以有多个notes []
条目。
我正在编写一个从message
中查找最新notes[]
的函数。根据{{1}}
creationDate