We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey, first of all, great project!
Is your feature request related to a problem? Please describe. One of the most annoying things about MongoDB and GOlang is querying.
Describe the solution you'd like I would like to see a query build that is simple enough and doesn't involve bson. For example
q := Query("field1", "value1") // optional "and" q.And("field2", "value2").And("field3", "value3") .And(Query("foo1", "v1").Or("foo2", "v2"))
This would greatly simplify most generic queries.
The text was updated successfully, but these errors were encountered:
Thanks, @nchanged.
Yeah, a query builder can be a good idea and we'll try to implement it.
Sorry, something went wrong.
Hi, I Wrote a sample demo here https://github.com/go-odm/odm/blob/master/query.go, which inspired https://github.com/aheckmann/mquery
mehran-prs
No branches or pull requests
Hey, first of all, great project!
Is your feature request related to a problem? Please describe.
One of the most annoying things about MongoDB and GOlang is querying.
Describe the solution you'd like
I would like to see a query build that is simple enough and doesn't involve bson. For example
This would greatly simplify most generic queries.
The text was updated successfully, but these errors were encountered: