const modelSchema = new Schema (
{
id: {
type: String,
required: true
},
name: {
type: String,
},
age: {
type: Number,
min: 18,
max: 90
},
cite: {
type: String
}
}
)
Person.find({age:19})
.then(persons => {console.log(persons[0].name)})