Question

select _id from project where projectName = '***' order by viewCount desc limit 5

i'm still new to mongoose and have a somewhat intermediate SQL understanding, here's my attempt of it as i'm trying to retrieve the ObjectId of the sorted return

ProjectModel.find({id}).sort({viewCount: -1}).limit(5).exec( 
    function(err, projects) {
        ...
    }
);
Was it helpful?

Solution

ProjectModel.find({projectName: '***'}, ["_id"]).sort({viewCount: -1}).limit(5).exec( 
    function(err, projects) {
        ...
    }
);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top