The Graph respresents the cypher-query-api of the neo4j database
You can perform basic actions and queries directly on the graph
Query Structure
Read Query Structure:
[START]
[MATCH]
[WHERE]
[WITH [ORDER BY] [SKIP] [LIMIT]]
RETURN [ORDER BY] [SKIP] [LIMIT]
Write-Only Query Structure:
(CREATE [UNIQUE] | MERGE)
[SET|DELETE|FOREACH]
[RETURN [ORDER BY] [SKIP] [LIMIT]]
Read-Write Query Structure:
[START]
[MATCH]
[WHERE]
[WITH [ORDER BY] [SKIP] [LIMIT]]
[CREATE [UNIQUE]|MERGE]
[SET|DELETE|FOREACH]
[RETURN [ORDER BY] [SKIP] [LIMIT]]