ConfigsApr 14, 2026·3 min read

Dgraph — Distributed Native GraphQL Database

Dgraph is a horizontally scalable graph database with native GraphQL as a query language. It stores relationships as first-class citizens and handles billions of edges — the go-to choice when graph traversals at scale matter.

TL;DR
Dgraph is a distributed graph database that uses native GraphQL for queries and handles billions of edges.
§01

What it is

Dgraph is a horizontally scalable graph database that treats relationships as first-class citizens and uses GraphQL as its native query language. Unlike relational databases that bolt on graph capabilities through joins, Dgraph stores edges natively and traverses them in constant time regardless of dataset size.

Dgraph targets teams building social networks, recommendation engines, knowledge graphs, fraud detection systems, and any application where relationship traversals dominate query patterns.

§02

How it saves time or tokens

Dgraph eliminates the impedance mismatch between your data model and your query language. If your data is a graph, you query it as a graph. There is no need to flatten relationships into join tables or maintain denormalized copies for performance. The native GraphQL API means frontend teams can query the database directly without a middleware translation layer. Horizontal sharding across nodes lets you scale without query rewrites.

§03

How to use

  1. Start Dgraph with Docker:
docker run -d --name dgraph \
  -p 8080:8080 -p 9080:9080 \
  dgraph/standalone:v23.1
  1. Define a schema via the GraphQL endpoint:
type Person {
  name: String! @search(by: [term])
  friends: [Person] @hasInverse(field: friends)
  age: Int @search
}
  1. Mutate and query data:
mutation {
  addPerson(input: [
    {name: "Alice", age: 30, friends: [{name: "Bob", age: 25}]}
  ]) {
    person { name friends { name } }
  }
}

query {
  queryPerson(filter: {name: {anyofterms: "Alice"}}) {
    name
    age
    friends { name age }
  }
}
§04

Example

A DQL (Dgraph Query Language) query for traversing friend-of-friend relationships:

{
  friends_of_friends(func: eq(name, "Alice")) {
    name
    friends {
      name
      friends {
        name
        age
      }
    }
  }
}
§05

Related on TokRepo

§06

Common pitfalls

  • Running the standalone Docker image in production limits you to a single node. Deploy Alpha and Zero nodes separately for fault tolerance and horizontal scaling.
  • Schema changes that modify index types require a background reindex. Plan index strategy before loading large datasets.
  • DQL and GraphQL have different capabilities. DQL supports recursive queries and aggregations that GraphQL mode does not expose directly.

Frequently Asked Questions

What is the difference between Dgraph's GraphQL and DQL?+

GraphQL is the standard API for CRUD operations with schema enforcement. DQL (formerly GraphQL+-) is Dgraph's native query language with additional features like recursive traversals, aggregations, and variable blocks. DQL is more powerful but less portable.

How does Dgraph scale horizontally?+

Dgraph shards data across Alpha nodes using a predicate-based sharding strategy managed by Zero nodes. Adding more Alpha nodes increases capacity. Zero nodes handle cluster coordination and shard rebalancing automatically.

Can Dgraph replace a relational database?+

Dgraph excels at relationship-heavy queries but lacks features like SQL transactions with isolation levels and complex aggregation pipelines. It works best as a complement to relational databases, handling the graph portion of your data model.

Does Dgraph support ACID transactions?+

Yes. Dgraph supports distributed ACID transactions across shards. Mutations are atomic and consistent, with snapshot isolation for concurrent reads.

What clients and languages does Dgraph support?+

Dgraph provides official clients for Go, Java, Python, and JavaScript. The GraphQL endpoint works with any HTTP client or GraphQL library. Community clients exist for Rust, C#, and other languages.

Citations (3)

Discussion

Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.

Related Assets