Details
-
New Feature
-
Status: Done
-
Minor
-
Resolution: Done
-
None
-
None
-
None
Description
`And/Or` operator is implemented as a logical operator, but `Not` is not implemented in WhereParser.
This is illustrated by following examples.
Following query works only because we added hardcoded implementation on `not in` as predicates.
query { s2graph { User(id: 1) { id Friends(limit: 10, filter: "friend_name not in ('steamshon')") { User { id } } } } }
I believe implementing `Not` as a logical operator is more general, so below is my suggestion.
query { s2graph { User(id: 1) { id Friends(limit: 10, filter: "NOT (friend_name in ('steamshon'))") { User { id } } } } }
In this way, we don't need to implement not case for all predicates, such as `in`, `between`, `contains`, `eq`.
Attachments
Issue Links
- links to