We’re overhauling Dgraph’s docs to make them clearer and more approachable. If you notice any issues during this transition or have suggestions, please let us know.
Dgraph natively supports GraphQL, including GraphQL Schema
s. GraphQL schemas
“sit on top of” DQL schemas, in the sense that when a GraphQL schema is added to
Dgraph, a corresponding DQL Schema
is automatically created.
Similarly, GraphQL mutations are implemented on top of DQL in the sense that a GraphQL query is converted internally into a DQL query, which is then executed. This translation isn’t particularly complex, since DQL is based on GraphQL, with some syntax changes and some extensions.
This is generally transparent to all callers, however users should be aware that
We’re overhauling Dgraph’s docs to make them clearer and more approachable. If you notice any issues during this transition or have suggestions, please let us know.
Dgraph natively supports GraphQL, including GraphQL Schema
s. GraphQL schemas
“sit on top of” DQL schemas, in the sense that when a GraphQL schema is added to
Dgraph, a corresponding DQL Schema
is automatically created.
Similarly, GraphQL mutations are implemented on top of DQL in the sense that a GraphQL query is converted internally into a DQL query, which is then executed. This translation isn’t particularly complex, since DQL is based on GraphQL, with some syntax changes and some extensions.
This is generally transparent to all callers, however users should be aware that