Database

[{"coursename":"Math","courseSection":[{"title":"Addition","content":[{"key":1},{"key":2}]},{"title":"Subtraction","content":[{"key":3},{"key":4}]},{"title":"Division","content":[{"key":5},{"key":6}]}]},{"coursename":"Science","courseSection":[{"title":"hello2","content":[{"key":7},{"key":8}]},{"title":"world2","content":[{"key":9},{"key":10}]},{"title":"New2","content":[{"key":13},{"key":14}]}]}]

Query

db.collection.aggregate([{$match:{courseSection:{$elemMatch:{title:"Division"}}}},{$unwind:"$courseSection"},{$unwind:"$courseSection.content"},{$match:{"courseSection.content.key":5}}])

Result