-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
subject/missing-syntaxIssues related to missing support for Cypher syntaxIssues related to missing support for Cypher syntaxtype/enhancementNew feature or requestNew feature or request
Milestone
Description
Currently, all comparison operators only implement BooleanType
. This means that the following is not allowed:
$a->gt($b)->gt($c)
That is because $a->gt($b)
returns a BooleanType, which does not implement the gt
method. We would like to support this, since it is supported in Cypher. That is, the following two expressions are equivalent:
a > b > c
and a > b AND b > c
This extends to all comparison operators and is not limited to three terms.
Metadata
Metadata
Assignees
Labels
subject/missing-syntaxIssues related to missing support for Cypher syntaxIssues related to missing support for Cypher syntaxtype/enhancementNew feature or requestNew feature or request