Takže podle komentáře potřebujete MongoDB verze 2.6, udělejte to. Ale samozřejmě s použitím 2.6 mi to funguje:
db.collection.aggregate([
{ "$limit": 1000 },
{ "$group": {
"_id": null,
"count": { "$sum": 1},
"data": { "$push": "$$ROOT" }
}}
])