Vous pouvez essayer la requête d'agrégation ci-dessous.
db.animals.aggregate([ [
{
"$lookup": {
"from": "meals",
"localField": "lastMeal",
"foreignField": "id",
"as": "last_meal"
}
},
{
"$unwind": "$last_meal"
},
{
"$match": {
"last_meal.created": {
"$gt": 20171001
}
}
}
])
Plus d'informations ici .
Vous pouvez utiliser $project
avec exclusion après $match
pour formater la réponse afin d'exclure les champs joints. Quelque chose comme { $project: {"last_meal":0} }