-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add support for query filtering on array based properties #167
Labels
Comments
Of course one of the main issues here is to actually come up with a way to generate database schema and SQL queries that would not bomb the performance while not introducing unnecessary complexity. I have played with few ideas in PostgreSQL before abandoning it... nevertheless here is my script that can provide a starting point in a potential future attempts:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Our current data layer does not support query filters on array properties. For example the filter
tags eq 'hello'
should be able to match object{ "tags": ["hello", "world"] }
. This behavior is defined in wrensec-commons.It is not that obvious such feature is necessary in Wren:IDM. That is why I am creating this GitHub issue to open the discussion.
The text was updated successfully, but these errors were encountered: