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

Recherche d'agrégation Mongo 3.6 avec plusieurs conditions

Fait avec l'objet pipeline suivant dans le $lookup étape

"pipeline": [
                { "$match":
                    { "$expr":
                        { "$and":
                            [
                                { "$eq": [ "$type", "prescription" ] },
                                { "$eq": [ "$value.patient",  "$$patient" ] }
                            ]
                        }
                    }
                }
            ]