Database
[{"videos":[{title:"this is a test title",views:55,duration:150,},{title:"this is another example title",views:155,duration:650,}]},{"username":"john doe"}]
Query
db.collection.find({
$text:{$search:"test"}
}).project({
videos:1,username:1
}).toArray()