Skip to content

Commit 8fdfbf2

Browse files
committed
add note about procedures
1 parent 9aef72a commit 8fdfbf2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

modules/ROOT/pages/queries/statement-types.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@ Cypher knows the following different statement types:
99
* Read query, which do not modify the data on your database, such as `MATCH (n) RETURN n`
1010
* Write query, which modify the data on your database, such as `CREATE (n) RETURN n`
1111
12-
Queries executed in the same transaction must either be of the same type, or a combination of schema modifications and read commands.
12+
Queries executed in the same transaction must either be of the same type, or a combination of schema modifications and read commands.
13+
14+
[NOTE]
15+
====
16+
Calling procedures on the system database does not count as an administration command.
17+
They are categorized either as a read or write query depending on the defined mode.
18+
====

0 commit comments

Comments
 (0)