I have a collection of movies, and the movie collection has an embedded document array of reviews. I want to select all the reviews with status=1
{
reviews: [
{
status: 0,
text: 'hello'
}, {
status: 1,
text: 'hi'
}
}, {
... etc ...