//Find everyone's name and age and display fields = { "name" => 1, "age" => 1 } cursor = find(client, "test.people", Dict(), fields) How is it possible to iterate only for people with age > 30 for example? Thanks