Skip to content

Commit aab9b59

Browse files
committed
merge lists
1 parent c7dc2e0 commit aab9b59

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

modules/ROOT/pages/queries/expressions.adoc

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,12 @@ String literals can contain the following escape sequences:
8585

8686
[[graphreferences]]
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>`
8889
* Static graph references: `USE <symbolic-name>` (for link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[standard and system databases]), `USE <symbolic-name>.<symbolic-name>` (for link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/composite-databases/concepts/[composite databases]).
8990
* 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>)`.
9091
* 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>)`
93+
9194

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

@@ -100,9 +103,4 @@ To refer to a database with a dot (`.`) in its name, quote the graph reference i
100103
For string literals, both the escaping rules for xref:queries/expressions.adoc#expressions-string-literals[string literals] (during query parsing) and xref::syntax/naming.adoc#symbolic-names-escaping-rules[symbolic names] (during graph reference evaluation) are applied.
101104
For example, the graph reference in `USE graph.byName('+composite.1\\u0041+')` resolves to the constituent `composite.1a` of the composite database `composite`.
102105

103-
Graph references are used within:
104-
105-
* xref:clauses/use.adoc[`USE clauses`]
106-
* Database and alias names when managing link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/[databases and aliases].
107-
108106

0 commit comments

Comments
 (0)