Questions tagged [dgraph]

Dgraph is a free, open source graph database that uses a customised version of graphql as a query language. DO NOT USE this tag for general graphql questions nor for other graph DBs.

Dgraph is an open source, scalable, distributed and highly available graph database. It's sharded storage and query processing were specifically designed to minimize the number of network calls. The database server and tools, written in go, are open-sourced and available under AGPL v3.0. The query language is named GraphQL+- and is based on Facebook’s GraphQL.

The clients communicate with the server using Protocol Buffers over gRPC. In the current version (v1.0.11), the available official clients are limited to the languages Go, Java, Javascript and Python.

For more information check following FAQ topics:

Useful links

Related Tags

106 questions
-1
votes
1 answer

Dgraph regex query with variables when using Dgraph Go client QueryWithVars

Is it possible to use variables with regex search when using the Dgraph go client? We could built the query with SprintF but that would be insecure. q :=query Search($searchterm: string) { subdomains(func: regexp(name, /^.*$searchterm/)) { …
mbudge
  • 557
  • 13
  • 28
1 2 3 4 5 6 7
8