A graph database where every mutation is immutable and every state is recoverable. Full Cypher support with built-in temporal resolution.
Full Cypher parser and executor. MATCH, CREATE, SET, DELETE, MERGE, RETURN, WHERE, ORDER BY, LIMIT, SKIP. No proprietary query language to learn.
Fully managed serverless backend. No clusters, no connection pools, no capacity planning. Scales to zero, scales to millions.
Every record carries _version, _valid_from, _valid_to. Query your graph at any point in time. Soft deletes only. Nothing is ever lost.
Partition-key scoped multi-tenancy. Paid plans get dedicated storage with independent point-in-time recovery. JWT + API key auth.
Send Cypher over HTTPS, get JSON back. Bearer token or API key authentication. One endpoint for queries, one for graph management.
Every mutation appends a new version. Deterministic replay, full audit trail, and point-in-time recovery built into the storage model.
Traverse nodes and relationships with expressive patterns. Variable-length paths, label scans, and adjacency traversal, all resolved at query time.
Built-in editor with Cypher syntax highlighting, table and JSON result views. Select a graph, write a query, see results. No setup required.
Create, list, and delete graphs via REST. Manage schemas, inspect labels and relationship types. Everything exposed through a clean HTTP interface.
Nodes, relationships, and properties rendered as an interactive network. Explore connections, trace paths, and understand your data topology at a glance.
No proprietary DSL. Use the industry-standard Cypher query language to create, traverse, and mutate your graph. Results come back as structured JSON over HTTPS.
MATCH (p:Person)-[r:WORKS_AT]->(c:Company) WHERE c.name = "Acme Corp" RETURN p.name, r.since, c.industry
| p.name | r.since | c.industry |
|---|---|---|
| Alice | 2023-01 | Technology |
| Bob | 2024-06 | Technology |
| Carol | 2025-03 | Technology |
Every mutation is an immutable append. Query your graph as it existed at any point in time. Roll back decisions, audit changes, and recover from mistakes without backups.
MATCH (p:Person {name: "Alice"}) RETURN p.role /* AT_TIME "2026-02-15T00:00:00Z" */
Your queries flow through a battle-tested AWS stack. Every component scales independently, and you pay only for what you use.
No credit card required. Build your graph on the free tier, then upgrade to dedicated storage when you need production-grade isolation.