Serverless Graph Database

Append-only. Time-indexed.
Deterministic.

A graph database where every mutation is immutable and every state is recoverable. Full Cypher support with built-in temporal resolution.

Start Building Sign In
0 ms
Cold start overhead
100%
Serverless
Temporal resolution

Cypher Native

Full Cypher parser and executor. MATCH, CREATE, SET, DELETE, MERGE, RETURN, WHERE, ORDER BY, LIMIT, SKIP. No proprietary query language to learn.

Zero Infrastructure

Fully managed serverless backend. No clusters, no connection pools, no capacity planning. Scales to zero, scales to millions.

Temporal by Default

Every record carries _version, _valid_from, _valid_to. Query your graph at any point in time. Soft deletes only. Nothing is ever lost.

Tenant Isolation

Partition-key scoped multi-tenancy. Paid plans get dedicated storage with independent point-in-time recovery. JWT + API key auth.

REST + Bearer Auth

Send Cypher over HTTPS, get JSON back. Bearer token or API key authentication. One endpoint for queries, one for graph management.

Append-Only Storage

Every mutation appends a new version. Deterministic replay, full audit trail, and point-in-time recovery built into the storage model.

Pattern Matching

Traverse nodes and relationships with expressive patterns. Variable-length paths, label scans, and adjacency traversal, all resolved at query time.

Query Console

Built-in editor with Cypher syntax highlighting, table and JSON result views. Select a graph, write a query, see results. No setup required.

Graph Management API

Create, list, and delete graphs via REST. Manage schemas, inspect labels and relationship types. Everything exposed through a clean HTTP interface.

See your data as a graph

Nodes, relationships, and properties rendered as an interactive network. Explore connections, trace paths, and understand your data topology at a glance.

Graph Explorer
WORKS_AT WORKS_AT CONTRIBUTES_TO MANAGES CONTRIBUTES_TO FUNDED_BY HAS_RELEASE Alice :Person Bob :Person Acme Corp :Company GraphQL API :Project Startup Fund :Investor v2.1 :Release

Write Cypher. Get JSON.

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.

Query Console
acme-graph ▶ Run
MATCH (p:Person)-[r:WORKS_AT]->(c:Company)
WHERE c.name = "Acme Corp"
RETURN p.name, r.since, c.industry
3 rows completed in 12ms
p.name r.since c.industry
Alice 2023-01 Technology
Bob 2024-06 Technology
Carol 2025-03 Technology

Time-travel through your data

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" */
Version History — Alice
Create v1 Jan 15, 2026
name: "Alice", role: "Engineer", team: "Platform"
Update v2 Mar 1, 2026
role: "Engineer" → "Senior Engineer"
Update v3 Jun 10, 2026
role: "Senior Engineer" → "Tech Lead", team: "Platform" → "Architecture"

Architecture

Fully serverless. Nothing to manage.

Your queries flow through a battle-tested AWS stack. Every component scales independently, and you pay only for what you use.

API Gateway
HTTPS endpoint
Rate limiting
Lambda
Cypher parser
& executor
Storage
Append-only engine
Temporal versioning
Cognito Auth
API Keys
Multi-tenant Isolation
Point-in-Time Recovery

Pricing

Start free. Scale when ready.

No credit card required. Build your graph on the free tier, then upgrade to dedicated storage when you need production-grade isolation.

Free
$0 / month
Prototype and learn Cypher on a real graph engine.
  • Shared storage
  • Up to 5 graphs
  • 1,000 queries / day
  • Full Cypher support
  • Temporal queries
  • Community support
Get Started
Team
$149 / month
Collaboration and scale for growing teams.
  • Everything in Pro
  • Unlimited graphs
  • Unlimited queries
  • Up to 10 team seats
  • Export & import
  • Priority support
Start Free Trial
Enterprise
Custom
For large-scale deployments with custom requirements.
  • Everything in Team
  • Unlimited team seats
  • Custom SLA
  • SSO / SAML
  • Dedicated support
  • Volume discounts
Contact Sales