MongoDB Erhalten Sie die ersten 10 Rekorde
#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);