MongoDB Obtenha os 10 primeiros registros
#I get the first ten documents from the collection
query = db.collection.find({
#whatever
}).limit(10);
Annoyed Antelope
#I get the first ten documents from the collection
query = db.collection.find({
#whatever
}).limit(10);