MongoDB Dapatkan 10 Rekaman Pertama
#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);