Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
119 changes: 119 additions & 0 deletions modules/ROOT/images/graph_expression_subqueries.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,44 @@ New features are added to the language continuously, and occasionally, some feat
This section lists all of the features that have been removed, deprecated, added, or extended in different Cypher versions.
Replacement syntax for deprecated and removed features are also indicated.

[[cypher-deprecations-additions-removals-5.3]]
== Version 5.3

=== Updated features

[cols="2", options="header"]
|===
| Feature
| Details

a|
label:functionality[]
label:updated[]
[source, cypher, role="noheader"]
----
EXISTS {
...
}
----
a|

An `EXISTS` subquery now supports any non-writing query. For example, it now supports `UNION` and `CALL` clauses.


a|
label:functionality[]
label:updated[]
[source, cypher, role="noheader"]
----
COUNT {
...
}
----
a|

A `COUNT` subquery now supports any non-writing query. For example, it now supports `UNION` and `CALL` clauses.

|===

[[cypher-deprecations-additions-removals-5.2]]
== Version 5.2
Expand Down
Loading