Skip to content
Merged
Show file tree
Hide file tree
Changes from 49 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
3ea3b53
Remove EXISTS as a function name
hvub Jun 4, 2021
76226dd
Remove EXISTS as a function name
hvub Jun 4, 2021
ab43947
Add production ExistentialSubquery
hvub Jun 4, 2021
e76ad49
Add non-terminal ExistentialSubquery as alternative to Atom
hvub Jun 4, 2021
c6c4caa
Rename CaseAlternatives to CaseAlternative
hvub Jun 7, 2021
62b48e0
Reuse <Where> in <PatternComprehension> for more consistency
hvub Jun 7, 2021
0eb3b60
First draft updating the CIP
hvub Jun 7, 2021
1399839
Fix grammar ambiguity bug
hvub Jun 7, 2021
0f97ded
Turn `exists(map.field)` into `map.field IS NOT NULL`
hvub Jun 8, 2021
32aefb8
Turn `exists(map.field)` into `map.field IS NOT NULL`
hvub Jun 8, 2021
e7782cb
Turn `exists(map.field)` into `map.field IS NOT NULL`
hvub Jun 8, 2021
ede07fb
Turn `exists(...)` into `... IS NOT NULL`
hvub Jun 8, 2021
9a9150c
Turn `exists(...)` into `... IS NOT NULL`
hvub Jun 8, 2021
e29d795
Turn `exists(...)` into `... IS NOT NULL`
hvub Jun 8, 2021
4950b42
Turn `exists(...)` into `... IS NOT NULL`
hvub Jun 8, 2021
e199365
Refine wording, fixing some typos and formatting
hvub Jun 8, 2021
12dbb9f
not use `exists`as variable name (reserved word)
hvub Jun 8, 2021
5a2b853
RelationshipsPattern -> RelationshipPattern
hvub Jun 8, 2021
9b53e94
editorials and new grammar linking
hvub Jun 8, 2021
248e3ce
RelationshipPattern -> RelationshipsPattern
hvub Jun 8, 2021
4e87bde
RelationshipPattern -> RelationshipsPattern
hvub Jun 8, 2021
31a0bef
move "IS NOT NULL is case insensitive" scenarios
hvub Jun 10, 2021
91f9d22
Add/extend scenarios testing IS [NOT] NULL on maps
hvub Jun 10, 2021
f994d19
Add/extend scenarios testing map field access with regards to null an…
hvub Jun 10, 2021
75c24aa
Remove `Map4 - Field existence check` (no dedicate functionality anym…
hvub Jun 10, 2021
5ec66f6
Add scenario for property/field existence check via `keys()` and `IN`
hvub Jun 10, 2021
3b424e3
bug fix
hvub Jun 10, 2021
aba4da9
Extend and align scenarios on static property/field access
hvub Jun 10, 2021
f56edb9
Remove `Graph9 - Property existence check` (no dedicated functionalit…
hvub Jun 10, 2021
4f3a475
bug fix
hvub Jun 10, 2021
e3b9679
bug fix
hvub Jun 10, 2021
127ea25
bug fix
hvub Jun 10, 2021
6b48569
bug fix
hvub Jun 10, 2021
9dfa6e3
accept suggestion from review
hvub Jun 11, 2021
16d844e
Update cip/1.accepted/CIP2015-05-13-EXISTS.adoc
hvub Jun 11, 2021
0410a1a
accept suggestion from review
hvub Jun 11, 2021
3c18456
accept suggestion from review
hvub Jun 11, 2021
eab2366
accept suggestion from review
hvub Jun 11, 2021
961affb
accept suggestion from review
hvub Jun 11, 2021
bf40a94
accept suggestion from review
hvub Jun 11, 2021
caa90a4
accept suggestion from review
hvub Jun 11, 2021
d7676fd
accept suggestion from review
hvub Jun 11, 2021
e2434ad
accept suggestion from review
hvub Jun 11, 2021
27579e6
add commas to grammar in cip
hvub Jun 11, 2021
72144e3
accept suggestion from review
hvub Jun 11, 2021
c423671
accept suggestion from review
hvub Jun 11, 2021
a842a3b
fix wording
hvub Jun 11, 2021
3fef5ba
fix wording
hvub Jun 11, 2021
5dc1466
add informative note
hvub Jun 11, 2021
a5c6c36
Accept suggestion
hvub Jun 15, 2021
0550779
Accept suggestion
hvub Jun 15, 2021
f256b3a
Add missing links
hvub Jun 15, 2021
cd9bf2f
Add missing place allowing a naked pattern
hvub Jun 15, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
190 changes: 137 additions & 53 deletions cip/1.accepted/CIP2015-05-13-EXISTS.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,102 +4,188 @@
:toc-placement: macro
:source-highlighter: codemirror

*Authors:* Andrés Taylor <[email protected]>
*Authors:* Andrés Taylor <[email protected]>, Hannes Voigt <[email protected]>


[abstract]
.Abstract
--
This CIP introduces `EXISTS`, a function and a keyword for checking the existence of properties, simple patterns and full subqueries.
This CIP introduces existential subqueries and cleans up previously existing language constructs for existence testing.
--

toc::[]

== Background

In a way, Cypher already has existential subqueries - pattern predicates checking for the existence of subgraphs.
This form is helpful, but not exhaustive in the types of subqueries that users want to be able to express.
openCypher has two language constructs that allow testing of existence.
Namely

* property existence predicate: `exists( n.prop )`, which is grammatically a https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=FunctionInvocation[<FunctionInvocation>]
* pattern predicates for the existence of subgraphs, which is grammatically a https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>]

Both are allowed as https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=Atom[<Atom>]s of expressions.

Note that a <RelationshipsPattern> appearing in an expression is evaluated to a list of paths containing the matches of the pattern.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is <RelationshipsPattern> supposed to be a link like below? (Twice in this paragraph)

In a predicate context this list gets coerced to a boolean (empty list -> [underline]#*_False_*#, non-empty list -> [underline]#*_True_*#), letting this <RelationshipsPattern> behave like a predicate although it actually is a list expression.
As a result, https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>s] appear to behave differently depending on the context in which they appear.
Further, https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=PatternComprehension[<PatternComprehension>] offer a more powerful and syntactically better separated means to get lists of matches for a pattern within expressions.

The understanding of subqueries in Cypher has evolved and Cypher gained a proper https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=NullOperatorExpression[<NullOperatorExpression>] (`IS [ NOT ] NULL`), cf. https://github.com/opencypher/openCypher/blob/master/cip/1.accepted/CIP2018-10-29-EXISTS-and-IS-NOT-NULL.adoc[CIP2018-10-29 EXISTS and IS NOT NULL].
Both developments and the issues around <RelationshipsPattern>s suggest the need for a refinement of the language constructs that allow testing of existence.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is <RelationshipsPattern> supposed to be a link?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have added the links.


== Proposal

To make this feature more powerful, this CIP suggests the addition of a new function `exists()`, and a keyword `EXISTS {}`, allowing for two different predicates:
This CIP proposes:

* Property existence checking
* Subquery existence checking
* Restricting https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>] to predicate contexts and boolean evaluation, when used in expression contexts
* Adding two forms of existential subqueries denoted with `EXISTS { ... }`:
** Full existential subquery based on a https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RegularQuery[<RegularQuery>]
** Simple existential subquery based on a single https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=Pattern[<Pattern>] and an optional https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=Where[<Where>] clause
* Removing `exists( n.prop )` in favor of the https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=NullOperatorExpression[<NullOperatorExpression>], which is a restatement of what has been accepted with https://github.com/opencypher/openCypher/blob/master/cip/1.accepted/CIP2018-10-29-EXISTS-and-IS-NOT-NULL.adoc[CIP2018-10-29 EXISTS and IS NOT NULL]

=== Syntax

----
expression = <current definition of expression>
| property exists
| subquery exists
| simple subquery exists
;
==== Grammar

property exists = "exists", "(", expression ")"
;
[source,bnf]
----
<Atom> ::=
...
| <RelationshipsPattern>
| <ExistentialSubquery>

subquery exists = "EXISTS", "{", read only clause, { read only clause }, "}" ;
<ExistentialSubquery> ::=
<SimpleExistentialSubquery>
| <FullExistentialSubquery>

simple subquery exists = "EXISTS", "{", simple match, "}" ;
<SimpleExistentialSubquery> ::=
"EXISTS", "{", <SimpleMatch>, "}"

simple match = pattern, { ",", pattern }, [ "WHERE", predicate ] ;
<FullExistentialSubquery> ::=
"EXISTS", "{", <RegularQuery>, "}"

read only clause = match
| unwind
| with
;
<SimpleMatch> ::=
<Pattern>, [ <Where> ]
----

Note that the openCypher grammar does not list <SimpleExistentialSubquery>, <SimpleMatch>, and <FullExistentialSubquery> as separate productions but represents them inline of https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=ExistentialSubquery[<ExistentialSubquery>].

==== Syntax Rules

* A https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>] shall only be contained in sites whose expected type is exactly boolean. Specifically, a https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>] shall only be simply contained in
** <Where>, used in
*** https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=Match[<Match>]
*** https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=With[<With>]
*** https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=YieldItems[<YieldItems>]
*** https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=FilterExpression[<FilterExpression>], used in
**** `ALL`, `ANY`, `NONE`, `SINGLE`
**** https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=ListComprehension[<ListComprehension>]
*** https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=PatternComprehension[<PatternComprehension>]
** https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=CaseAlternative[<CaseAlternative>]
* The https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RegularQuery[<RegularQuery>] contained in a <FullExistentialSubquery> shall not contain any https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=UpdatingClause[<UpdatingClause>] nor procedure or function calls that are not known to be free of side effects.

=== Semantics

All forms of `EXISTS {}` accomplish the same task: checking whether a particular pattern exists in the graph.
They are expressions, and as such must be side-effect free; that is, the subqueries in `EXISTS {}` must not be updating queries.
All forms of `EXISTS {}` are scalar expressions - they return a single boolean value, and this value is never `null`.
https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>], <SimpleExistentialSubquery>, and <FullExistentialSubquery> accomplish the same task: checking whether the result of a subquery is not empty.

All three forms,

* Are boolean expressions, i.e. return a single boolean value
* Never return `null`
* Are side effect-free, i.e. <FullExistentialSubquery> shall not contain any <UpdatingClause> or other sources of side effects
* Can contain variables and parameters from the outer queries

==== Property exists
https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>] shall not introduce new variables.

In the property checking form, any expression is accepted as the input.
If the input expression evaluates to `null`, `exists()` will evaluate to `false`. For any other value, it will evaluate to `true`.
This form of `exists()` is equivalent to checking for `null` using `IS NOT NULL`: `exists(expr)` is equivalent to `expr IS NOT NULL`.
Both forms of https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=ExistentialSubquery[<ExistentialSubquery>] (<SimpleExistentialSubquery> and <FullExistentialSubquery>) are allowed to introduce new variables.
These variables necessarily shall have a name different from the names of all variables available from the outer queries.
Any variables introduced in an <ExistentialSubquery> are not available outside the subquery context.

This form is there to make property existence checking idiomatic in Cypher - we do not want the user thinking of missing properties as checking for `null` values.
https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>] and <SimpleExistentialSubquery> are syntactically simpler and semantically less powerful forms of <FullExistentialSubquery>.
The semantics of https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>] and <SimpleExistentialSubquery> can be defined as syntax transformations to <FullExistentialSubquery>.

==== Subquery exists
==== <RelationshipsPattern>

When checking for the existence of subqueries, variables and parameters from the outer query are available in the subquery.
Variables introduced in the subquery are not available on the outside.
A https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RelationshipsPattern[<RelationshipsPattern>] _RP_ is effectively replaced by the expression

For each matching subgraph evaluated with `EXISTS {}`, the result value must be `true` if the subquery finds at least one matching row.
If no matches are found, `false` should be returned.
`EXISTS { MATCH _RP_ RETURN 1 }`

The subquery used in `EXISTS {}` has to follow the following rules:
==== <SimpleExistentialSubquery>

* It has to be a read-only query. Updating the graph as part of a predicate is not allowed.
* It cannot end in a `RETURN` clause, nor may it contain `UNION`.
* When `WITH` ends the subquery, it is able to change the cardinality of the subquery.
In other words, since the `WITH` clause may include `WHERE`, `SKIP`, and/or `LIMIT`, the clause can with these sub-clauses turn a query that produces rows into one that does not.
* It may use nested `EXISTS {}` predicates.
A <SimpleExistentialSubquery> containing a <SimpleMatch> _SM_ is effectively replaced by the expression

==== Simple subquery exists
`EXISTS { MATCH _SM_ RETURN 1 }`

When the subquery can be described with a single `MATCH-WHERE` clause, the `MATCH` keyword can be omitted, as in example 2A and B.
The difference between this form and a simple pattern predicate, which is already available, is that this form allows for introducing new variables inside the `EXISTS {}` scope.
==== <FullExistentialSubquery>

A <FullExistentialSubquery> _FES_ is effectively evaluated as follows:

* Let _OUTER_VARIABLES_ be the current working record for which the expression containing _FES_ is evaluated.
* Let _NESTED_QUERY_ be the https://raw.githack.com/openCypher/openCypher/master/tools/grammar-production-links/grammarLink.html?p=RegularQuery[<RegularQuery>] immediately contained in _FES_.
* Let _RESULT_TABLE_ be the table resulting from evaluating _NESTED_QUERY_ on a driving table comprising _OUTER_VARIABLES_.
* Case:
** If _RESULT_TABLE_ is an empty table (cardinality is zero), then the result of _FES_ is [underline]#*_False_*#.
** Otherwise, the result of _FES_ is [underline]#*_True_*#.

Note that all fields in _RESULT_TABLE_ are ignored and only the number of rows in _RESULT_TABLE_ is relevant for the result of _FES_.

=== Examples

_Example 1A:_
==== Property existence test

_Example 1:_

Return all nodes that have a property named `slogan`.
[source, cypher]
----
MATCH (actor)
WHERE exists(actor.slogan)
WHERE actor.slogan IS NOT NULL
RETURN actor
----

==== Pattern predicates in boolean expression context

_Example 2A:_

Find all actors who won an award.

[source, cypher]
----
MATCH (actor:Actor) WHERE (actor)-[:WON]->(:Award)
RETURN actor
----

_Example 2B:_

Find all actors with their major accolade.

[source, cypher]
----
MATCH (actor:Actor)
RETURN actor,
CASE actor
WHEN (actor)-[:WON]->(:Oscar) THEN 'Oscar winner'
WHEN (actor)-[:WON]->(:GoldenGlobe) THEN 'Golden Globe winner'
ELSE 'None'
END AS accolade
----

_Example 2C:_

Find all movies that have at least one award-winning actor in their cast.

[source, cypher]
----
MATCH (movie:Movie)<-[:ACTED_IN]-(actor:Actor)
WITH movie, collect(actor) AS cast
WHERE ANY(actor IN cast WHERE (actor)-[:WON]->(:Award))
RETURN movie
----

==== Existential subqueries

_Example 3A:_

Find all actors who have acted together with another actor with the same name.

[source, cypher]
Expand All @@ -112,7 +198,7 @@ WHERE EXISTS {
RETURN actor
----

_Example 2B:_
_Example 3B:_

Find all actors who have acted together with another actor with the same name on at least two movies.

Expand All @@ -128,11 +214,6 @@ WHERE EXISTS {
RETURN actor
----

=== Interaction with existing features

The `EXISTS {}` subquery clause renders obsolete the current pattern predicate syntax.
This allows the pattern predicates to be deprecated and/or removed in favour of `EXISTS {}`.

== What others do

This is very similar to what SQL does with its `EXISTS` functionality.
Expand All @@ -156,7 +237,7 @@ RETURN person

This proposal also allows for powerful subqueries, for example using aggregation inside the `EXISTS {}` query.

.Find all teams that have at least two members who have worked on successful projects.
Find all teams that have at least two members who have worked on successful projects.
[source, cypher]
----
MATCH (team:Team)
Expand All @@ -171,6 +252,9 @@ WHERE EXISTS {
RETURN team
----

However, pattern predicates have a readability advantage in narrow cases.
Hence, this proposal retains them while removing their confusing meaning outside boolean expression context.

== Caveats to this proposal

Subqueries are powerful constructs. As such they can be difficult to understand, and difficult for a query planner to get right.
22 changes: 15 additions & 7 deletions grammar/basic-grammar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@
<non-terminal ref="RelationshipsPattern"/>
<non-terminal ref="ParenthesizedExpression"/>
<non-terminal ref="FunctionInvocation"/>
<non-terminal ref="ExistentialSubquery"/>
&var;
</alt>
</production>
Expand Down Expand Up @@ -387,13 +388,20 @@
</production>

<production name="FunctionName" rr:inline="true">
<non-terminal ref="Namespace" rr:title="function namespace"/>
<non-terminal ref="SymbolicName" rr:title="function name"/>
</production>

<production name="ExistentialSubquery">
EXISTS &WS; { &WS;
<alt>
<non-terminal ref="RegularQuery" rr:title="full existential subquery"/>
<seq>
<non-terminal ref="Namespace" rr:title="function namespace"/>
<non-terminal ref="SymbolicName" rr:title="function name"/>
<non-terminal ref="Pattern"/>
<opt>&WS; <non-terminal ref="Where"/></opt>
</seq>
EXISTS
</alt>
&WS; }
</production>

<production name="ExplicitProcedureInvocation">
Expand Down Expand Up @@ -433,7 +441,7 @@
[ &WS;
<opt><non-terminal ref="Variable"/> &WS; = &WS;</opt>
<non-terminal ref="RelationshipsPattern"/> &WS;
<opt>WHERE &WS; <non-terminal ref="Expression"/> &WS;</opt>
<opt><non-terminal ref="Where"/> &WS;</opt>
| &WS; <non-terminal ref="Expression"/> &WS;
]
</production>
Expand All @@ -447,14 +455,14 @@

<production name="CaseExpression">
<alt>
<seq>CASE <repeat min="1">&WS; <non-terminal ref="CaseAlternatives"/></repeat></seq>
<seq>CASE &WS; &expr; <repeat min="1">&WS; <non-terminal ref="CaseAlternatives"/></repeat></seq>
<seq>CASE <repeat min="1">&WS; <non-terminal ref="CaseAlternative"/></repeat></seq>
<seq>CASE &WS; &expr; <repeat min="1">&WS; <non-terminal ref="CaseAlternative"/></repeat></seq>
</alt>
<opt>&WS; ELSE &WS; &expr;</opt>
&WS; END
</production>

<production name="CaseAlternatives" rr:inline="true">
<production name="CaseAlternative" rr:inline="true">
WHEN &WS; &expr; &WS; THEN &WS; &expr;
</production>

Expand Down
4 changes: 2 additions & 2 deletions tck/features/clauses/match-where/MatchWhere5.feature
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Feature: MatchWhere5 - Filter on predicate resulting in null
When executing query:
"""
MATCH (:Root {name: 'x'})-->(i:TextNode)
WHERE i.var > 'te' AND exists(i.var)
WHERE i.var > 'te' AND i.var IS NOT NULL
RETURN i
"""
Then the result should be, in any order:
Expand All @@ -106,7 +106,7 @@ Feature: MatchWhere5 - Filter on predicate resulting in null
When executing query:
"""
MATCH (:Root {name: 'x'})-->(i)
WHERE i.var > 'te' OR exists(i.var)
WHERE i.var > 'te' OR i.var IS NOT NULL
RETURN i
"""
Then the result should be, in any order:
Expand Down
4 changes: 2 additions & 2 deletions tck/features/clauses/remove/Remove1.feature
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Feature: Remove1 - Remove a Property
"""
MATCH (n)
REMOVE n.num
RETURN exists(n.num) AS still_there
RETURN n.num IS NOT NULL AS still_there
"""
Then the result should be, in any order:
| still_there |
Expand Down Expand Up @@ -76,7 +76,7 @@ Feature: Remove1 - Remove a Property
"""
MATCH ()-[r]->()
REMOVE r.num
RETURN exists(r.num) AS still_there
RETURN r.num IS NOT NULL AS still_there
"""
Then the result should be, in any order:
| still_there |
Expand Down
6 changes: 3 additions & 3 deletions tck/features/clauses/return/Return3.feature
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ Feature: Return3 - Return multiple expressions (if column order correct)
When executing query:
"""
MATCH (a)
RETURN exists(a.id), a IS NOT NULL
RETURN a.id IS NOT NULL AS a, a IS NOT NULL AS b
"""
Then the result should be, in any order:
| exists(a.id) | a IS NOT NULL |
| false | true |
| a | b |
| false | true |
And no side effects

Scenario: [2] Returning multiple node property values
Expand Down
Loading