Model.find(query, fields, options, callback) Model.find({ 'some.value': 5 }, function (err, docs) { // docs is an array }); Model.findOne Model.findOne({ age: 5}, function (err, doc){ // doc is a Document }); Model.findById Model.findById(obj._id, fu…