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/clauses/use.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ A more detailed description of how and when a graph references needs to be quote
29
29
30
30
== USE clause when connected to a standard or system database
31
31
32
-
All databases and aliases are valid graph reference targets except composite databases and their constituents.
32
+
All databases and aliases are valid graph reference targets except link:operations-manual/current/database-administration/aliases/manage-aliases-composite-databases/[composite databases and their constituents].
33
33
Targeting multiple databases is not allowed, unless connected to a composite database.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,15 +155,16 @@ Several xref:clauses/transaction-clauses.adoc#query-listing-transactions[`SHOW
155
155
156
156
a|
157
157
label:functionality[]
158
-
label:deprecated[]
158
+
label:updated[]
159
159
[source, cypher, role="noheader"]
160
160
----
161
161
USE graph.byName('tom`s-database')
162
162
163
163
USE graph.propertiesByName('database.with.dot')
164
164
----
165
-
| xref::queries/expressions.adoc#graphreferences[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 are parsed as <symbolic-name> or <symbolic-name>.<symbolic-name> and now support escaping names.
166
-
Graph name parts that contain unsupported characters for unescaped symbolic names now require backtick escaping.
165
+
| xref::queries/expressions.adoc#graphreferences[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 are parsed as `<symbolic-name>` or `<symbolic-name>.<symbolic-name>` and now support escaping names.
166
+
For more information, see xref:syntax/expressions.adoc#graph-references[Cypher expressions -> Graph references.
167
+
Graph name parts that contain unsupported characters for unescaped symbolic names now require backtick quoting.
167
168
Graph name parts with special characters may require additional escaping of those characters:
Copy file name to clipboardExpand all lines: modules/ROOT/pages/queries/expressions.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,13 +83,13 @@ String literals can contain the following escape sequences:
83
83
* Label and relationship type expressions: `(n:A|B)`, `+()-[r:R1|R2]->()+`.
84
84
* `null`.
85
85
86
-
[[graphreferences]]
86
+
[[graph-references]]
87
87
== Graph references
88
-
* Database and alias names when managing link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[databases and aliases]: `CREATE DATABASE <symbolic-name>`
88
+
* Database and alias names when managing link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[databases and aliases]: `CREATE DATABASE <symbolic-name>`.
89
89
* Static graph references: `USE <symbolic-name>` or `USE <symbolic-name>.<symbolic-name>` (for constituents of a link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/composite-databases/concepts/[composite databases]).
90
90
* Dynamic graph reference with the xref:functions/graph.adoc#functions-graph-byname[`graph.byName`] function, to access a graph of a given name: `USE graph.byName(<string-expression>)`.
91
91
* Dynamic graph references with the xref:functions/graph.adoc#functions-graph-by-elementid[`graph.byElementId`] function, to access a graph of a given node or relationship: `USE graph.byName(<element-id-string>)`.
92
-
* Retrieving properties of a graph with the xref:functions/graph.adoc#functions-graph-propertiesByName[`graph.propertiesByName`] function: `graph.propertiesByName(<string-expression>)`
92
+
* Retrieving properties of a graph with the xref:functions/graph.adoc#functions-graph-propertiesByName[`graph.propertiesByName`] function: `graph.propertiesByName(<string-expression>)`.
93
93
94
94
95
95
Rules on string expressions for graph references when using identifiers (static graph references, administration commands) or a string (graph.byName function):
0 commit comments