Skills2026年4月14日·1 分钟阅读

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.

Agent 就绪

先审查再安装

这个资产需要先审查。复制的指令会要求 Agent dry-run、列出写入项,确认后再继续。

Needs Confirmation · 64/100策略:需确认
Agent 入口
任意 MCP/CLI Agent
类型
Skill
安装
Single
信任
信任等级:Established
入口
step-1.md
先审查命令
npx -y tokrepo@latest install 08c928a8-37d2-11f1-9bc6-00163e2b0d79 --target codex

先 dry-run,确认写入项后再运行此命令。

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.

常见问题

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.

引用来源 (3)

讨论

登录后参与讨论。
还没有评论,来写第一条吧。

相关资产