You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,27 @@ Features removed in Cypher 25 are still available on Neo4j 2025.06+ databases ei
30
30
| Feature
31
31
| Details
32
32
33
+
a|
34
+
label:functionality[]
35
+
label:removed[]
36
+
[source, cypher, role="noheader"]
37
+
----
38
+
CREATE DATABASE db OPTIONS { seedCredentials: ... }
39
+
----
40
+
| The option `seedCredentials` is removed from the `CREATE DATABASE` `OPTIONS` map.
41
+
For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/create-databases/#manage-databases-create-database-options[Operations Manual -> Database administration -> Create databases].
42
+
43
+
a|
44
+
label:functionality[]
45
+
label:removed[]
46
+
[source, cypher, role="noheader"]
47
+
----
48
+
CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... }
49
+
----
50
+
| The option `existingDataSeedInstance` is removed from the `CREATE DATABASE` `OPTIONS` map and replaced by `existingDataSeedServer`.
51
+
For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/create-databases/#manage-databases-create-database-options[Operations Manual -> Database administration -> Create databases].
52
+
53
+
33
54
a|
34
55
label:functionality[]
35
56
label:removed[]
@@ -138,6 +159,25 @@ For more information, see the link:{neo4j-docs-base-uri}/operations-manual/curre
138
159
139
160
|===
140
161
162
+
=== Deprecated in Cypher 25
163
+
164
+
[cols="2", options="header"]
165
+
|===
166
+
| Feature
167
+
| Details
168
+
169
+
a|
170
+
label:functionality[]
171
+
label:deprecated[]
172
+
[source, cypher, role="noheader"]
173
+
----
174
+
CREATE DATABASE db OPTIONS { existingData: ... }
175
+
----
176
+
| The option `existingData` is deprecated.
177
+
For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/create-databases/#manage-databases-create-database-options[Operations Manual -> Database administration -> Create databases].
This allows a database to be seeded up to a specific date or transaction ID.
361
401
For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/seed-from-uri/[Operations Manual -> Database administration -> Create a database from a URI].
362
402
403
+
a|
404
+
label:functionality[]
405
+
label:new[]
406
+
[source, cypher, role="noheader"]
407
+
----
408
+
CREATE DATABASE db OPTIONS { seedSourceDatabase: ... }
409
+
----
410
+
| You can specify the name of a source database if the `seedURI` points to a folder containing backups for multiple databases.
411
+
For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/create-databases/#manage-databases-create-database-options[Operations Manual -> Database administration -> Create databases].
0 commit comments