Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RangeQuery #26

Open
nnfuzzy opened this issue Jun 30, 2014 · 1 comment
Open

RangeQuery #26

nnfuzzy opened this issue Jun 30, 2014 · 1 comment

Comments

@nnfuzzy
Copy link

nnfuzzy commented Jun 30, 2014

//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

@szalmaf
Copy link

szalmaf commented Sep 16, 2015

It is a bit late answer, but I just came across this problem. Did you try something like this?

cursor = find(client, BSONObject("{"age": { "$gt": 30}}"))

It works for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants