Skip to content

Commit 3a35e3a

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

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

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

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,28 @@ The following Unicode Characters are removed in identifiers:
6767
|===
6868

6969

70+
=== Updated features
71+
72+
[cols="2", options="header"]
73+
|===
74+
| Feature
75+
| Details
76+
77+
a|
78+
label:functionality[]
79+
label:updated[]
80+
[source, cypher, role="noheader"]
81+
----
82+
CALL db.schema.nodeTypeProperties() YIELD propertyTypes RETURN propertyTypes;
83+
CALL db.schema.relTypeProperties() YIELD propertyTypes RETURN propertyTypes;
84+
----
85+
a|
86+
The column `propertyTypes` 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()`] previously returned a list of strings representing the potential Java types for a given property.
87+
It now returns a list of strings representing the possible Cypher Types the given property has.
88+
For all available Cypher types, see the section on xref::values-and-types/property-structural-constructed.adoc#types-synonyms[types and their synonyms].
89+
|===
90+
91+
7092
[[cypher-deprecations-additions-removals-5.25]]
7193
== Neo4j 5.25
7294

@@ -104,8 +126,6 @@ CREATE DATABASE db OPTIONS { existingDataSeedServer: ... }
104126
|===
105127

106128

107-
108-
>>>>>>> cypher-25
109129
[[cypher-deprecations-additions-removals-5.24]]
110130
== Neo4j 5.24
111131

0 commit comments

Comments
 (0)