You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cypher knows the following different statement types:
6
+
7
+
* Administration command are documented in the link:{neo4j-docs-base-uri}/operations-manual/current/[Operations Manual]. An example of an administration command would be `CREATE DATABASE movies`
8
+
* Schema modification, which modify indexes and constraints, such as `CREATE CONSTRAINT ...`
9
+
* Read query, which do not modify the data on your database, such as `MATCH (n) RETURN n`
10
+
* Write query, which modify the data on your database, such as `CREATE (n) RETURN n`
11
+
12
+
Queries executed in the same transaction must either be of the same type, or a combination of schema modifications and read commands.
0 commit comments