Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/ROOT/pages/syntax/naming.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ For example, `MATCH ( a ) RETURN a` is equivalent to `MATCH (a) RETURN a`.
=== Using special characters in names
Non-alphabetic characters, including numbers, symbols and whitespace characters, *can* be used in names, but *must* be escaped using backticks.
For example: `++`^n`++`, `++`1first`++`, `++`$$n`++`, and `++`my variable has spaces`++`.
Database names are an exception and may include dots without the need for escaping.
For example: naming a database `foo.bar.baz` is perfectly valid.
Database names are an exception and may include dots without the need for escaping, although this behavior is deprecated as it may introduce ambiguity when addressing composite databases.
For example: naming a database `foo.bar.baz` is valid, but deprecated. `++`foo.bar.baz`++` is valid.

Within an escaped name, the following escaping sequences are allowed:

Expand Down
Loading