new Schema({
data: {
type: ObjectId,
refPath: 'onTest'
},
onTest: {
type: String,
enum: ['Test1', 'Test2']
}
});
db.test.update( { ... }, { $set: {...newData} } ) https://docs.mongodb.com/manual/reference/operator/update/set/#set-top-level-fields
Обсуждают сегодня