i have such query
Order.find({patient:req.user._id})
.populate({
path:'doctor',
populate:{
path:'specialization',
select:'-_id'
},
})
in this query, if I remove select - everything is working, but when i want select fields which i want (not all ), (select as option working on first level population ) populate no working, can you help me?