$lookup
शहर के संग्रह में शामिल हों
$lookup
देश संग्रह में शामिल हों
$project
आवश्यक फ़ील्ड दिखाने के लिए, city
. से पहला तत्व प्राप्त करें और country
$first
. का उपयोग करके
db.travel_reservation.aggregate([
{
$lookup: {
from: "city",
localField: "city_id",
foreignField: "_id",
as: "city"
}
},
{
$lookup: {
from: "country",
localField: "city.country_id",
foreignField: "_id",
as: "country"
}
},
{
$project: {
name_person: 1,
city: { $first: "$city" },
country: { $first: "$country" }
}
}
])
खेल का मैदान