MongoDB obtiene los primeros 10 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);