I am using jenssegers mongodb package in laravel for querying mongodb. How to retrieve the records matching only the games as cricket in the below json document.
{
"_id": ObjectId("53402597d852426020000002"),
"contact": "987654321",
"dob": "01-01-1991",
"gender": "M",
"name": "Tom Benzamin",
"user_name": “tombenzamin”,
“Personal_info”:[
hobbies:{
"games": "cricket",
"favfilms": "lotr",
"favfood": "burger"
}
]
}
}