例:
var mongoose = require('mongoose')
, Album = mongoose.model('Album');
app.get('/posts/:id', function(req, res, next) {
Album.findById(req.params.id, function(err, album) {
// album is available here
});
});
http://mongoosejs.com/docs/finding-documents.html を参照してください。 ドキュメントの検索について詳しくは、こちらをご覧ください。
PS:私があなたの質問に答えたのはこれが3回目です:)