MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment projeter si le champ existe

Exécutez le pipeline d'agrégation suivant pour obtenir les résultats souhaités :

db.collection.aggregate([
    {
        "$project": {
            "a": 1,
            "resultsOfComputation": {
                "d": { "$gt": ["$resultsOfComputation.d", null] }   
            }
        }
    }
])

Exemple de sortie

/* 1 */
{
    "_id" : 1,
    "a" : 1,
    "resultsOfComputation" : {
        "d" : true
    }
}

/* 2 */
{
    "_id" : 2,
    "a" : 1,
    "resultsOfComputation" : {
        "d" : false
    }
}