Skip to content

Commit 7be498c

Browse files
typos
1 parent 1b3f808 commit 7be498c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ROOT/pages/queries/select-version.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ SET n = r
5454
[source, cypher]
5555
----
5656
CYPHER 25
57-
MATCH (n:Order)-[r:SHIPPED_TO]->(m:Address)
57+
MATCH (n:Order)-[r:SHIPPED_TO]->(:Address)
5858
SET n = properties(r)
5959
----
6060
======
@@ -116,7 +116,7 @@ For example, if a database is created with Cypher 5 as its default language, pre
116116
=== Procedures and functions
117117

118118
link:{neo4j-docs-base-uri}/operations-manual/current/procedures[Procedures] and xref:functions/index.adoc[functions] (including built-in and link:{neo4j-docs-base-uri}/apoc/current/[APOC]) are tied to a specific Cypher language version.
119-
Therefore, procedures and functions in Neo4j 2025.03+ and APOC 2025.03+ (both of which have Cypher 25 as their default language), may behave differently depending on what version of Cypher is used.
119+
Therefore, procedures and functions in Neo4j 2025.03+ and APOC 2025.03+ (both of which have Cypher 25 as their default language) may behave differently depending on what version of Cypher is used.
120120

121121
For example, APOC 2025.03 removed Cypher 25 support of the procedure `apoc.create.uuids()`, meaning it is not available to queries running Cypher 25.
122122
However, it can still be used on APOC 2025.03 if queries are prepended with `CYPHER 5`, or if the database’s default version is set to `CYPHER 5`.
@@ -197,7 +197,7 @@ ALTER DATABASE my_database SET DEFAULT LANGUAGE CYPHER 25
197197

198198
The Cypher version of a database can be seen using the link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/listing-databases/[`SHOW DATABASES`] command as follows:
199199

200-
.Set Cypher 25 as the default language on an existing database
200+
.Retrieve the default language on existing databases
201201
[source, cypher]
202202
----
203203
SHOW DATABASES YIELD name, defaultLanguage

0 commit comments

Comments
 (0)