MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Gruppe in Mongo ohne Nullwerte

Sie benötigen ein zusätzliches $match Pipeline-Schritt, der die eingehenden Dokumente basierend auf dem eingebetteten Feld "$productAttribute.colour" filtert vorhanden und nicht null:

    db.productMetadata.aggregate([
    { 
        "$match": {
            "productAttribute.colour": { 
                "$exists": true, 
                "$ne": null 
            }
        }    
    },
    { 
        "$group": {
            "_id": {
                "color": "$productAttribute.colour",
                "gender": "$productAttribute.gender"
            },
            "count": { 
                "$sum": 1 
            }
        }   
    }        
]);