MongoDB obtient les 10 premiers records
#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);