Database

db={"meals":[{"_id":{"$oid":"635a732932edf20bed23da5a"},"name":"Tomatoes with eggs","recipe":"Mix tomatoes with eggs","image":"link","portions":{"$numberDouble":"2.0"},"ingredients":[{"product_id":{"$oid":"635a715b32edf20bed23da54"},"serving":"tbsp","amount":{"$numberDouble":"2.0"}},{"product_id":{"$oid":"635a71fb32edf20bed23da55"},"serving":"piece","amount":{"$numberDouble":"1.0"}}]}],"products":[{"_id":{"$oid":"635a715b32edf20bed23da54"},"name":"Tomato","image":"/images/tomato.png","nutrients":{"kcal":"300","carbohydrates":"100","fat":"50","protein":"2"},"servings":{"g":"1","piece":"200","tbsp":"15","tsp":"5","ml":"1"},},{"_id":{"$oid":"635a71fb32edf20bed23da55"},"name":"Egg","image":"/images/egg.png","nutrients":{"kcal":"200","carbohydrates":"90","fat":"80","protein":"3"},"servings":{"g":"1","piece":"60","tbsp":"N/A","tsp":"N/A","ml":"N/A"},}]}

Query

db.meals.aggregate({$lookup:{from:"products",localField:"ingredients.product_id",foreignField:"_id",as:"products"}})

Result