-
-
Notifications
You must be signed in to change notification settings - Fork 397
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
Please auto group related record filters of the same type #965
Comments
Hey, this is an interesting idea. Generally, all query builder filters are combined using a logic |
what PR? also this isnt a hedge case this is very standard usage. anyway i just made my own library but i would suggest you guys look into this. @AlexVanderbist |
also its not a matter of OR/AND its a matter or "HAS child with x AND Y" instead of "HAS child with x AND has child with Y". So its a logical grouping problem not an logical operator problem (AND/OR) |
Say a user wants to filter using multiple criteria for related a record of the same type.
E.g.
i cant imagine a case where users intends to not have these criteria grouped. But you guys are not grouping them automatically. This is odd. Let me explain:
this is what you guys interpret the query to mean
get me records where
but the below interpretation would much more useful (grouping) and way more likely to be what the user is trying to achieve
get me records where
The text was updated successfully, but these errors were encountered: