-
Notifications
You must be signed in to change notification settings - Fork 4
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
A way to define custom filters #31
Comments
Hi HassanAzzam, сould you please provide a more detailed example of your use case? The current implementation already supports complex filtering and serialization, but maybe I missed something. Thanks in advance! |
Have a look at elide.io(a known json api library for Java), there is a list of supported operators for filtering out-of-box( |
Got it! The filter expression visitor is a specific interface provided by the entity store. It can be tricky to create custom implementations because it involves a lot of reflection, filter expressions creation and delegation logic to keep things simple for the end user. Usually, you can achieve the same results as with |
Currently can't define filters other than the defined in the filter expression visitor class.
It's nice to have custom filters such as
subsetof
or so, but can't find a clean way to do so.The text was updated successfully, but these errors were encountered: