MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

$lookup, wenn sich ForeignField in einem verschachtelten Array befindet

Ich bin mir nicht sicher, ob ich Ihre Frage ganz verstehe, aber dies sollte Ihnen helfen:

db.student.aggregate([{
    $match: { _id: ObjectId("657...") }
}, {
    $lookup: {
        from: 'library',
        localField: '_id' ,
        foreignField: 'issued_to.student',
        as: 'result'
    }
}])

Wenn Sie nur alle book_name erhalten möchten s für jeden Schüler können Sie Folgendes tun:

db.student.aggregate([{
    $match: { _id: ObjectId("657657657657657657657657") }
}, {
    $lookup: {
        from: 'library',
        let: { 'stu_id': '$_id' },
        pipeline: [{
            $unwind: '$issued_to' // $expr cannot digest arrays so we need to unwind which hurts performance...
        }, {
            $match: { $expr: { $eq: [ '$issued_to.student', '$$stu_id' ] } }
        }, {
            $project: { _id: 0, "book_name": 1 } // only include the book_name field
        }],
        as: 'result'
    }
}])