Database

[{"_id":ObjectId("624e105df043d4ad4ee893ee"),"title":"First post","author":"Rituparna","comments":[{"content":"First comment","author":"Ritu","_id":ObjectId("624e109b966fbe64b2a80ea9"),"replies":[]},{"content":"second comment","author":"Ritu","_id":ObjectId("624e10a4e33f7962d0002f39"),"replies":[]}],"__v":0}]

Query

db.collection.aggregate([{$match:{"comments._id":ObjectId("624e109b966fbe64b2a80ea9")}},{$unwind:"$comments"},{$match:{"comments._id":ObjectId("624e109b966fbe64b2a80ea9")}},{$replaceWith:"$comments"}])

Result