Skip to content

Serverless TypeDB

Strongly-typed knowledge graph with TypeQL. A real graph database without the operational weight, on cloud, desktop, or self-host.

Free tier, no credit card
TypeQL Console
TypeDB

Types

  • user
  • company
  • employment
  • friendship
match $u isa user,
has name $name, has email $email;
select $name, $email;
sort $name asc; limit 5;
nameemail
Alice Chenalice@b.co
Ben Ortizben@b.co
Dana Suzukidana@b.co
Evan Walshevan@b.co
Farah Khanfarah@b.co
5 answers ยท 9ms

Branching, on request

Database branching is live on 9 engines today, and the same copy-on-write mechanism spans the whole fleet. Want it on TypeDB? Reach out and we will look at switching it on for your account.

Request branching

Production features, free tier included

Every TypeDB database ships with the same primitives: TLS, web console, hibernation, and a real dashboard. No tiered features hidden behind a sales call.

Web IDE

Query console in the dashboard, no extra client to install.

Included

TLS by default

All connections encrypted. No setup required.

Included

Always-on connections

Pin a database to your always-on pool to prevent hibernation.

Included

Scale to zero

Hibernates when idle. Wakes on the next connection.

Included

Connection pooling

Pooled endpoint for serverless and edge workloads.

Included

Direct connections

Bypass the pooler for migrations and replication.

Included

Native HTTPS endpoint

Engines whose own wire protocol speaks HTTPS. Every database, including this one, is also queryable over the platform's HTTPS query API and web console.

Not available

Serverless driver

Drop-in HTTP driver for edge runtimes (Upstash REST, PlanetScale, or the engine-native client).

Not available

IP whitelisting

Restrict access to specific IPs or CIDR ranges.

Included

Automatic backups

Scheduled dumps and volume snapshots with one-click restore on paid plans. Free tier includes a manual backup slot.

Included

Predictable pricing, no cloud setup

TypeDB on Layerbase Cloud is priced the same way as every other engine: a flat monthly plan with nothing metered behind it.

A fixed monthly price

Plans are flat: Free at $0, then $5/mo Solo and $15/mo Pro. No per-hour compute meter, no per-database line items, and no bill that changes shape when your traffic does.

No bandwidth charges

Reads and writes are not metered. There are no ingress or egress fees, so moving data in and out of your database never adds to the bill.

No cloud account to wire up

You do not need an AWS, GCP, or Azure account. Sign up, create a database, and connect. Layerbase runs the infrastructure, so there is no cloud provider to configure or pay separately.

Hosted TypeDB, compared

TypeDB Cloud

Free tier
Free single-server tier
Billing
Self-serve managed TypeDB

Layerbase

Free tier
TypeDB on the Free tier; sleeps when idle, wakes on connect
Billing
Flat pricing, and the same account runs 20 other engines

Competitor facts as of July 2026, from public pricing pages.

Connect with any TypeDB client

Knowledge graphs, expressive entity-relationship modeling, reasoning over structured data, and apps that benefit from a strongly-typed schema.

  • Model a knowledge graph for a domain that defeats relational normalization
  • Prototype reasoning use cases (drug interactions, supply chains, fraud rings)
  • Hand a TypeDB endpoint to teammates who query it with the web console or a TypeDB driver
  • Run TypeDB locally with Layerbase Desktop, deploy the same schema to cloud
  • Self-host on your own hardware with SpinDB
Full TypeDB connection guide
bash
TypeDB
typedb console --address your-host.cloud.layerbase.dev:1729 --username admin

Common TypeDB questions

Which TypeDB version runs here?

TypeDB 3.x (3.12 by default). TypeQL 3.x uses transactions (define for schema, insert for data, match with select or fetch for reads). The 2.x concepts of sessions and rule when/then are not part of 3.x.

How do I connect?

Layerbase publishes a gRPC TypeQL endpoint. The typedb console and the TypeDB 3.x drivers for Python, Java, and Rust connect with the dashboard credentials, and the dashboard query console runs ad-hoc TypeQL in the browser.

What about the Node.js driver and TypeDB Studio?

The npm typedb-driver package is still 2.x. The maintained 3.x JavaScript driver and TypeDB Studio both connect over the TypeDB HTTP endpoint, which Layerbase does not expose today, so use the console, a gRPC driver, or the web query console. TypeDB Cloud is the option when you need Studio and multi-node HA clusters.

Schema and data load?

The same TypeQL schema and ingestion patterns work locally and in cloud. The dashboard query console supports schema definition and ad-hoc TypeQL.

Is there a free tier?

Yes. TypeDB is a Standard engine on Layerbase Cloud, included on the Free plan. It sleeps when idle and wakes on connect.

Can I run TypeDB locally?

Yes. SpinDB and Layerbase Desktop both run TypeDB with the same workflow.