-
Notifications
You must be signed in to change notification settings - Fork 34
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
Replace EntityEncoderFilter with per-entity object filter #501
Milestone
Comments
andrus
changed the title
Replace EntityEncoderFilter with per-entity read and write acce
Replace EntityEncoderFilter with per-entity read / write filter
Nov 25, 2021
andrus
changed the title
Replace EntityEncoderFilter with per-entity read / write filter
Replace EntityEncoderFilter with per-entity object read filter
Nov 25, 2021
andrus
changed the title
Replace EntityEncoderFilter with per-entity object read filter
Replace EntityEncoderFilter with per-entity object filter
Nov 27, 2021
andrus
added a commit
that referenced
this issue
Nov 28, 2021
andrus
added a commit
that referenced
this issue
Nov 28, 2021
.. splitting Exp from an in-memory filter
andrus
added a commit
that referenced
this issue
Nov 28, 2021
.. object filter API in SelectBuilder and UpdateBuilder
andrus
added a commit
that referenced
this issue
Nov 28, 2021
andrus
added a commit
that referenced
this issue
Nov 28, 2021
.. keeping just readbale filter to stay within the scope of #501
andrus
added a commit
that referenced
this issue
Nov 28, 2021
.. attempt at implementing FilterDataStage
andrus
added a commit
that referenced
this issue
Nov 28, 2021
andrus
added a commit
that referenced
this issue
Nov 28, 2021
andrus
added a commit
that referenced
this issue
Nov 28, 2021
andrus
added a commit
that referenced
this issue
Nov 28, 2021
andrus
added a commit
that referenced
this issue
Dec 5, 2021
.. refactoring stage names to match update stages
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As mentioned in #445 ,
EntityEncoderFilter
is not that easy to use:willEncode
andencode
Let's design a new
ReadFilter
API that will allow to filter objects in GET or POST/PUT requests before sending them to client based on custom logic. It should be per-entity, and internally attached toAgEntity
/AgEntityOverlay
, just like property filtering is. It should also address a recently deprecated use case ofConstraint.qualifier
.Notes on the implementation:
EntityEncoderFilter
is deprecated in 4.8 and will be removed in 5.0.SelectStage.FILTER
stage is added at the end of the select pipelineReadFilter
API works:The text was updated successfully, but these errors were encountered: