Database

[{"object_id":750445,"object_infos":"750445 - Madelena - O'Connell and Becker - Clarendon Street - Ketangi","score":25.159177780151367,"highlights":[{"score":6.748023509979248,"path":"name","texts":[{"value":"O'Connell and ","type":"text"},{"value":"Becker","type":"hit"}]},{"score":7.059268474578857,"path":"locality","texts":[{"value":"Ketangi","type":"hit"}]}]},]

Query

db.collection.aggregate([{$unwind:"$highlights"},{$unwind:"$highlights.texts"},{$match:{"highlights.texts.type":"hit"}},{$group:{_id:{_id:"$_id","object_infos":"$object_infos","score":"$score",},highlights:{$push:"$highlights.texts.value"}}},{$project:{_id:"$_id._id","object_infos":"$_id.object_infos","score":"$_id.score",highlights:1}}])

Result