Right now we support both at the same time:
# Raw query
await Movie.query({"name": "X"}).first()
# Query builder
await Movie.query(Movie.name == "X").first()
This leas to complexity handling both in the same method. I'm thinking maybe adding a .raw()
method which accepts the query and doesn't do any validation/query building and sends it directly to MongoDB.
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too