MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Operatore $arrayElemAt in aggregazione con Mongo <3.2

Dovrai $unwind , $group e usa $first e $last operatori come questo:

db.collection.aggregate([
    { "$unwind": "$favorites" },
    { "$group": { 
        "_id": "$_id",
        "first": { "$first": "$favorites" },
        "last": { "$last": "$favorites" }
    }}
])

O due query diverse se $unwind è costoso

var first = db.collection.find({}, {"favorites": { $slice: 1}})
var last = db.collection.find({}, {"favorites": { $slice: -1}})