mongodbネイティブの使用: http://mongodb.github .io / node-mongodb-native / api-generated / collection.html#find
myModel.find(filter)
.limit(pageSize)
.skip(skip)
.sort(sort)
.toArray(callback);
クエリでアイテムを指定することもできます:
myModel.find(filter, {sort: {created_at: -1}, limit: 10}, function(err, items){
});
ノードmongodbネイティブには$orderbyがないため、使用しているライブラリやその他のツールがわかりません。
...
マングースを明確にしたので(一般的にはお勧めしません):
myModel.find(filter).limit(10).exec(function(err, items){
//process
});