Skip to content

Commit ef6af69

Browse files
Apply suggestions from code review
Co-authored-by: Jens Pryce-Åklundh <[email protected]>
1 parent bef6e03 commit ef6af69

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

modules/ROOT/pages/clauses/use.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A more detailed description of how and when a graph references needs to be quote
2929

3030
== USE clause when connected to a standard or system database
3131

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].
3333
Targeting multiple databases is not allowed, unless connected to a composite database.
3434

3535
=== Position of use clauses

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,16 @@ Several xref:clauses/transaction-clauses.adoc#query-listing-transactions[`SHOW
155155

156156
a|
157157
label:functionality[]
158-
label:deprecated[]
158+
label:updated[]
159159
[source, cypher, role="noheader"]
160160
----
161161
USE graph.byName('tom`s-database')
162162
163163
USE graph.propertiesByName('database.with.dot')
164164
----
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.
167168
Graph name parts with special characters may require additional escaping of those characters:
168169

169170
* `++USE graph.byName('`tom``s-database`')++`

modules/ROOT/pages/queries/expressions.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ String literals can contain the following escape sequences:
8383
* Label and relationship type expressions: `(n:A|B)`, `+()-[r:R1|R2]->()+`.
8484
* `null`.
8585

86-
[[graphreferences]]
86+
[[graph-references]]
8787
== 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>`.
8989
* 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]).
9090
* 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>)`.
9191
* 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>)`.
9393

9494

9595
Rules on string expressions for graph references when using identifiers (static graph references, administration commands) or a string (graph.byName function):

0 commit comments

Comments
 (0)