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

Recupera il valore del campo dalla matrice del documento secondario

Puoi farlo con il framework di aggregazione.

db.repository.aggregate([ 
    { "$match": { 
        "datetime_int": { "$gte": 1451952000 }, 
        "software.adobe.licenses.key" : { "$exists" : true } 
    }}, 
    { "$project": { 
        "hash": 1, 
        "key": { 
            "$map": { 
                "input": "$software.adobe.licenses", 
                "as": "soft", 
                "in": "$$soft.key"
            }
        }
    }}
])

A partire da MongoDB 3.2 puoi proiettare direttamente il campo dell'array del sottodocumento.

{ "$project": { "hash": 1, "key": "$software.adobe.licenses.key"}}