Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,33 @@ Replacement syntax for deprecated and removed features are also indicated.
[[cypher-deprecations-additions-removals-5.2]]
== Version 5.2

=== Deprecated features

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

a|
label:syntax[]
label:deprecated[]
[source, cypher, role="noheader"]
----
MATCH ()-[r*]-()-[r*]-()
----
----
MATCH p = ()-[r*]-(), q = ()-[r*]-()
----

----
MATCH ()-[r*]-() MATCH ()-[r*]-()
----
a|

The use of the same relationship variable for multiple variable length relationships is deprecated.

|===

=== Updated features

[cols="2", options="header"]
Expand Down Expand Up @@ -73,7 +100,7 @@ CREATE TEXT INDEX ... OPTIONS {indexProvider: `text-2.0`}
----
a|

A new text index provider is available, `text-2.0`.
A new text index provider is available, `text-2.0`.
This is also the default provider if none is given.

|===
Expand Down