ScottPJones / Mongo.jl

Mongo bindings for the Julia programming language
Other
43 stars 21 forks source link

New query syntax with operators and modifiers #11

Closed tmlbl closed 9 years ago

tmlbl commented 9 years ago

Check out the updated README for an explanation. Creates a way to write compact queries without a bunch of Dict constructors, i.e.

find(collection, (query("job" => "Fireman"), orderby("age" => -1)))
ghost commented 9 years ago

This is great, thanks!