Database

[{"machine":1,"status":true,"comments":[{"machine":1,"status":false,"emp":"158","comment":"testing the latest update"},{"machine":1,"status":false,"emp":"007","comment":"2nd comment"},{"machine":1,"status":true,"emp":"007","comment":"3rd comment"},]},{"machine":2,"status":true,"comments":[{"machine":2,"status":true,"emp":"158","comment":"checking dcm 2"}]}]

Query

db.collection.aggregate([{$project:{machine:1,status:1,comments:{$slice:[{$filter:{input:"$comments",as:"item",cond:{$eq:["$$item.emp","007"]}}},-1]},_id:0}},{$set:{comments:{$arrayElemAt:["$comments",0]}}}])

Result