Skip to content
Merged
Changes from 1 commit
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 @@ -16,6 +16,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.25]]
== Neo4j 5.25

=== New features

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

a|
label:functionality[]
label:new[]
[source, cypher, role="noheader"]
----
CREATE DATABASE db OPTIONS { existingDataSeedServer: ... }
----
| The option `existingDataSeedServer` has beed added to `CREATE DATABASE`. The functionality is the same as the deprecated option `existingDataSeedServer` which this replaces.
|===

=== Deprecated features

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

a|
label:functionality[]
label:deprecated[]
[source, cypher, role="noheader"]
----
CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... }
----
| The `CREATE DATABASE` option `existingDataSeedInstance` has been deprecated and replaced with the option `existingDataSeedServer`. The functionality is unchanged.
|===


[[cypher-deprecations-additions-removals-5.24]]
== Neo4j 5.24

Expand Down