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

Como projetar se o campo existe


Execute o seguinte pipeline de agregação para obter os resultados desejados:
db.collection.aggregate([
    {
        "$project": {
            "a": 1,
            "resultsOfComputation": {
                "d": { "$gt": ["$resultsOfComputation.d", null] }   
            }
        }
    }
])

Saída de amostra
/* 1 */
{
    "_id" : 1,
    "a" : 1,
    "resultsOfComputation" : {
        "d" : true
    }
}

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