Puoi provare sotto la query di aggregazione.
db.animals.aggregate([ [
{
"$lookup": {
"from": "meals",
"localField": "lastMeal",
"foreignField": "id",
"as": "last_meal"
}
},
{
"$unwind": "$last_meal"
},
{
"$match": {
"last_meal.created": {
"$gt": 20171001
}
}
}
])
Maggiori informazioni qui .
Puoi usare $project
con esclusione dopo $match
fase per formattare la risposta per escludere i campi uniti. Qualcosa come { $project: {"last_meal":0} }