MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

MongoDB obter subdocumento


Você pode fazer isso com o Aggregation Framework. A consulta será algo como:
db.customer.aggregate([
    {$unwind : "$channels"},
    {$match : {"channels.id" : "10000-1"}},
    {$project : {_id : 0, 
                 id : "$channels.id", 
                 name : "$channels.name", 
                 enabled : "$channels.enabled"}}
])