A new universe for your graph data.Meet Galactus DB
GALACTUS DB WIKIDeployment · Queries · Operations

Cypher query language

Wiki

On this page

GDB implements a read/write subset of Cypher, plus documented extensions such as element indexes and shared uniqueness. Begin with the data model and quickstart.

Statements and examples

The engine parses one statement per call, with an optional trailing semicolon. Explorer splits a script and sends each statement as its own auto-commit operation; it stops on the first error and keeps earlier commits. Use transactions when several operations must commit atomically.

Cypher line comments begin with //. Parameters such as $email are supplied by a driver or embedding API; they are values, not syntax substitutions. Examples using labels assume the corresponding data exists, unless setup is included. Constraint examples explicitly labelled as errors are intentional.

Keywords accepted as contextual identifiers depend on their parser position; backtick-quote ambiguous labels, keys or variables. Follow the examples rather than assuming every keyword is usable as an unquoted identifier.

Query workflow

Read with MATCH/WHERE, update with CREATE/MERGE/SET, then shape results using functions, aggregates and expressions. Use subqueries and parameters to compose queries, paths for traversal, and EXPLAIN to inspect index use. See compatibility for unsupported syntax.

Articles

Indexes and constraints · Procedure directory · Transactions and concurrency

Planning a deployment? Review compatibility and licence setup for your instance.