Bearbeiten: Zitat aus:Wie man ein Array zurückgibt von Strings mit Mongodb-Aggregation
Ursprüngliche Antwort:
Probieren Sie das Aggregations-Framework aus:
db.myCol.aggregate([
{
$group:{_id:null, array:{$push:"$_id"}}
},
{
$project:{array:true,_id:false}
}
])