Skip to content

Commit a740be1

Browse files
Document change in behaviour for db.schema.nodeTypeProperties() and db.schema.relTypeProperties() (#1063)
The column propertyTypes is a LIST, currently it outputs runtime types, but in Cypher25 it outputs Cypher Types. #1062 --------- Co-authored-by: Jens Pryce-Åklundh <[email protected]>
1 parent dc20574 commit a740be1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,30 @@ New features are added to the language continuously, and occasionally, some feat
1616
This section lists all of the features that have been removed, deprecated, added, or extended in different Cypher versions.
1717
Replacement syntax for deprecated and removed features are also indicated.
1818

19+
[[cypher-deprecations-additions-removals-5.26]]
20+
== Neo4j 5.26
21+
22+
=== Deprecated features
23+
24+
[cols="2", options="header"]
25+
|===
26+
| Feature
27+
| Details
28+
29+
a|
30+
label:functionality[]
31+
label:deprecated[]
32+
[source, cypher, role="noheader"]
33+
----
34+
CALL db.schema.nodeTypeProperties() YIELD propertyTypes RETURN propertyTypes;
35+
CALL db.schema.relTypeProperties() YIELD propertyTypes RETURN propertyTypes;
36+
----
37+
a|
38+
The column `propertyTypes` currently returned by the procedures link:{neo4j-docs-base-uri}/operations-manual/{page-version}/procedures/#procedure_db_schema_nodetypeproperties[`db.schema.nodeTypeProperties()`] and link:{neo4j-docs-base-uri}/operations-manual/{page-version}/procedures/#procedure_db_schema_reltypeproperties[`db.schema.relTypeProperties()`] produces a list of strings representing the potential Java types for a given property.
39+
In an upcoming major release of Neo4j, this will be updated to represent the possible Cypher types for that property instead.
40+
For all available Cypher types, see the section on xref::values-and-types/property-structural-constructed.adoc#types-synonyms[types and their synonyms].
41+
|===
42+
1943
[[cypher-deprecations-additions-removals-5.25]]
2044
== Neo4j 5.25
2145

0 commit comments

Comments
 (0)