You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use this package on our API at CourtListener.com, where we provide a public API used by many people and organizations.
We're getting two related requests from users that we want to address:
Folks want to filter nested fields as described in Filter fields in embedded document #15. We think this would be easy from an API perspective (just use double-underscores to indicate sub-items).
Folks want this package to optimize the queries sent to the DB (probably using django's defer() method on the backend).
This change is needed because we have a field in our API that contains the text of large documents and some users do not want to pull that from the DB in the first place.
I notice that this package hasn't been updated in several years. If we provide a clean PR with tests for each of these features, would that be welcome? If not, I think our plan will be to make a little fork with the functionality we need.
Hi!
We use this package on our API at CourtListener.com, where we provide a public API used by many people and organizations.
We're getting two related requests from users that we want to address:
Folks want to filter nested fields as described in Filter fields in embedded document #15. We think this would be easy from an API perspective (just use double-underscores to indicate sub-items).
Folks want this package to optimize the queries sent to the DB (probably using django's
defer()method on the backend).This change is needed because we have a field in our API that contains the text of large documents and some users do not want to pull that from the DB in the first place.
I notice that this package hasn't been updated in several years. If we provide a clean PR with tests for each of these features, would that be welcome? If not, I think our plan will be to make a little fork with the functionality we need.
Thank you!