Skip to content

Commit 94aaf6b

Browse files
committed
update updated functionality section for graph functions
1 parent eeb9437 commit 94aaf6b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,13 @@ label:functionality[]
174174
label:updated[]
175175
[source, cypher, role="noheader"]
176176
----
177-
USE graph.propertiesByName('`composite.with.dot`.constituent')
177+
USE graph.byName('composite.with.dot.constituent')
178+
USE graph.propertiesByName('composite.with.dot.constituent')
178179
----
179180
|
180-
The graph name ``composite.with.dot`.constituent` is deprecated. It is replaced by ``composite.with.dot`.constituent`.
181+
In Cypher 25, xref::values-and-types/graph-references.adoc[Graph references] in arguments of the functions xref:functions/graph.adoc#functions-graph-byname[`graph.byName`] and xref:functions/graph.adoc#functions-graph-propertiesByName[`graph.propertiesByName`] now require no syntactic quotes.
181182

182-
In Cypher 5, there was some special logic for composite databases or constituents with dots,
183-
which required quotes around those name parts in order to find the name. This deprecations apply to xref::values-and-types/graph-references.adoc[Graph references] in arguments of the functions xref:functions/graph.adoc#functions-graph-byname[`graph.byName`] and xref:functions/graph.adoc#functions-graph-propertiesByName[`graph.propertiesByName`]. In Cypher 25 the graph references can be passed in without quoting
184-
as in the name column from `SHOW ALIASES FOR DATABASE`.Note that escaping graph names within the graph functions string argument is not supported in Cypher 5.
183+
In Cypher 5, there was some special logic for composite databases or constituents with dots, which required quotes around those name parts in order to find the name, e.g. `USE graph.byName('`composite.with.dot`.constituent')`.
185184

186185
a|
187186
label:functionality[]

0 commit comments

Comments
 (0)