Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Dgraph work with standard GraphQL #933

Closed
smkhalsa opened this issue May 12, 2017 · 42 comments
Closed

Make Dgraph work with standard GraphQL #933

smkhalsa opened this issue May 12, 2017 · 42 comments
Labels
area/graphql Issues related to GraphQL support on Dgraph. kind/feature Something completely new we should consider. popular priority/P1 Serious issue that requires eventual attention (can wait a bit) status/accepted We accept to investigate/work on it.
Milestone

Comments

@smkhalsa
Copy link

smkhalsa commented May 12, 2017

I've read #114 and understand why you've chosen not to follow the graphql spec. However, graphql clients like Relay and Apollo provide some very useful features out of the box such as client side caching, optimistic updates, combining queries, etc.

I ended up creating a graphql server to map some basic graphql queries to graphql+-. However, I'm struggling with how to do this efficiently within the graphql server resolve functions without creating a lot of query-specific logic.

Can you please provide an example of the recommended way to interact with graphql clients like Relay and Apollo (either directly or via a graphql server)?

@loganpowell
Copy link

http://dpeek.com/dgraphql/ thought you might like this...

@manishrjain
Copy link
Contributor

We need to have a thorough review of our QL, and see if we can get it to be close to compatibility with GraphQL.

@znafets
Copy link

znafets commented Aug 22, 2017

I've setup a GraphQL server as well and seem not to be able to figure out how to get data into and from a Dgraph database. Are there any (simple) examples how I would translate a GraphQL query to a Dgraph query in order t access the persistence layer

@manishrjain
Copy link
Contributor

We'll make a push to try to reconcile GraphQL+- with GraphQL past v1.0.

@manishrjain manishrjain added this to the v1.x milestone Nov 15, 2017
@manishrjain manishrjain added the investigate Requires further investigation label Nov 15, 2017
@tslater
Copy link

tslater commented Dec 20, 2017

In particular, I'd love to see how to make this work with Relay. In terms of streamlining an entire application stack, I think that would be huge! Right now I am using a MySQL-backed relay-compliant GraphQL server with Relay on the front end, in order to use Dgraph, I would need a clear path on how I could keep the benefits (and code) of my current client application.

@manishrjain manishrjain changed the title Give example for how to use dgraph with graphql client Make Dgraph work with standard GraphQL Dec 20, 2017
@manishrjain manishrjain added kind/enhancement Something could be better. and removed investigate Requires further investigation labels Dec 20, 2017
@loganpowell
Copy link

@manishrjain if you could create something like this for graphql+/-? Perhaps an abstraction layer that would allow folks to use existing standards (gremlin, RDF, etc.). Just read your article on Jupiter. Let's get this ship sailed!

@loganpowell
Copy link

Just another reason to make a graphql-compliant processor: schema stitching. Seems like a natural fit. Microservices and Dgraph.

@MichelDiz
Copy link
Contributor

I think maybe the schema stitching is a bit out of context. If you want to connect Dgraph to a "gateway" in GraphQL for example. You would need to have a GraphQL schema being offered by the Dgraph "natively". Dgraph uses GraphQL +/- only as a query concept. Dgraph does not have a schema defined as GraphQL. Unless natively implemented an option to generate Schemas making http://dpeek.com/dgraphql/ become obsolete.

Basically if the Dgraph is to accept GraphQL natively, it will have to create a context mimicking the original idea. GraphQL +/- does not have things like interfaces, Unions, Enums and etc. Or "introspection."

That is, the Dgraph Schema is distinct from the GraphQL schema. Then you would need to create an application that does an intermediate between Gateway => service.app with GraphQL end-point to stitch ==> Dgraph related with the service.

I believe that if the Dgraph is to do this they will have to do an "imitation game". (joke)

@tslater
Copy link

tslater commented Dec 31, 2017 via email

@MichelDiz
Copy link
Contributor

Yeah, a dialect in Join Monster would be the perfect strategy. Since JM (Join Monster) would only read the schema created and hence generate the queries in accordance with what was required.

I had already suggested this while ago (join-monster/join-monster#266). And you can add a dialect that JM can transpose to GraphQL +/- or Cypher. But the problem lies in the other languages. There is no similar project that supports Go Lang, Elixir, Java, Python and so on. Unless Dgraph team take the concept of JM and create their respective code languages supports. But that is beyond the scope of the Dgraph team.

@loganpowell
Copy link

loganpowell commented Jan 11, 2018

Indeed, a graphdb-based BAAS fronted with GraphQL would be a killer

@loganpowell
Copy link

Might this be a way to do this?

https://www.graph.cool/

@loganpowell
Copy link

loganpowell commented Jan 15, 2018

Open-source framework to develop and deploy production-ready serverless GraphQL backends. Including GraphQL database mapping, real-time subscriptions & flexible permission system.

Link to video from founder explaining this microservices approach

@ptpaterson
Copy link

Graphcool just released graph.cool 1.0 under the banner Prisma

They are looking to get connectors made for many different databases, including Dgraph.

To satisfy the issue, either Dgraph needs to natively handle standard GraphQL queries, or GraphQL queries should be "compiled" into GraphQL+/- (or other supported language e.g. gramlin, cypher). Regardless, the result would be an opinionated way to structure the graph data. Is that fair to say? So, rather than "Make Dgraph work with standard GraphQL", should we instead focus on how such an opinionated data model would look?

It doesn't seem necessary to add a label property (not an edge) to every node like other graph databases, which would fundamentally change the database. But when a user wants GraphQL connection is desired, can we agree to enforce some minimum schema? At a minimum

label: string @index(hash) # filter-able so can be used as GraphQL type

so that something like this GraphQL

query {
  User(name: "Mike") {
    name
    otherStuff
  }
}

could be compiled or interpreted natively as

{
  User(func: eq(name, "Mike") ) @filter(eq(label, "User")) {
    name
    otherStuff
  }
}

I am working on a GraphQL API in front of my Dgraph data. I am very fond of how my data is represented in Dgraph and the ease of querying, but I still need to work out the (numerous) kinks in querying/mutating via standard GraphQL. I would love to love to work with and offer my results to the community.

A description of my current take is in this gist.

@MichelDiz
Copy link
Contributor

MichelDiz commented Jan 19, 2018

Just a fast comment - I think this is the recommended approach to be considered. https://docs.dgraph.io/howto/#giving-nodes-a-type

{
  User(func: has(User))  @filter(eq(name, "Mike") ) {
    name
    otherStuff
  }
}

UPDATE (2019):

As we have a type system, this approach is no longer useful.

@ptpaterson
Copy link

Thanks @MichelDiz!

Would it be prudent to create type.[type name] predicates (e.g. type.User or label.User, kind.User whatever) to avoid potential conflicts. Running it through my head, it seems like it makes sense for a schema to have other names for predicates like owner , friend, author that point to a node which has(User). Seems like a nitpick, but I am trying to propose a formal specification.

But I do like this. The User predicate, and all others, could then have other edges describing the properties expected of that type. Every instance of a type could then point to the type definition. It could be quite useful for introspection.

@ptpaterson
Copy link

Possible TypeDefinitions object below. I think it would be better if it followed the GraphQL schema AST object format more precisely. Also not included interfaces, indexes, etc., but I just wanted to get this out there.

example schema schema

TypeDefinitions: default .
Type: uid .
Type.Name: string .
Field: uid .
Field.Name: string .
Field.Type: string .
Facet: uid .
Facet.Name: string . 
Facet.Type: string .
User: uid .
Profile: uid .

example built schema

{
  set {
    _:tdroot <TypeDefinitions> "Type Definitions" .

    _:tdroot <Type> _:UserType .
    _:tdroot <Type> _:ProfileType .

    _:UserType <Type.Name> "User" .
    _:UserType <Field> _:UserFieldfirstName .
    _:UserFieldfirstName <Field.Name> "firstName" .
    _:UserFieldfirstName <Field.Type> "string" .
    _:UserType <Field> _:UserFieldlastName .
    _:UserFieldlastName <Field.Name> "lastName" .
    _:UserFieldlastName <Field.Type> "string" .

    _:ProfileType <Type.Name> "Profile" .
    _:ProfileType <Field> _:ProfileFieldage .
    _:ProfileFieldage <Field.Name> "age" .
    _:ProfileFieldage <Field.Type> "int" .
    _:ProfileType <Field> _:ProfileFieldverified .
    _:ProfileFieldverified <Field.Name> "verified" .
    _:ProfileFieldverified <Field.Type> "bool" .

    _:ProfileFieldverified <Facet> _:ProfileFieldverifiedFacet .
    _:ProfileFieldverifiedFacet <Facet.Name> "since" .
    _:ProfileFieldverifiedFacet <Facet.Type> "dateTime" .
  }
}

image

To validate GraphQL query against a type definition like the one below, perhaps facets would need to be described as a field, but with additional information. e.g.

Field: uid .
Field.Name: string .
Field.Type: string .
Field.FacetOf: uid . // points to other Field within the Type.

image

@ptpaterson
Copy link

ptpaterson commented Jan 19, 2018

Facets of uid predicates vs. facets of scalars presents a dilemma. See standard GraphQL query:

query {
  Profile(uid: "0x1234") {
    age
    verified
    verifiedSince # verified facet, flat
    favoriteMovie {
      rating # Dgraph would put facet here
      otherMovieThings
    }
    favoriteMovieRating # should GraphQL ask for facet here instead?
  }
}

I think I offered my examples in a poor order, where the favoriteMovie|rating facet should be a child, but the verified|since facet should be described as a field.

Also not sure how to Type Field of type uid. I added a Field.TypeDef predicate to the User.profile Field, and rearranged my facet definitions to get this

image

@MichelDiz
Copy link
Contributor

MichelDiz commented Jan 19, 2018

@ptpaterson are you trying this actually with Prisma and Dgraph? or just imagining/theorizing? Sounds pretty cool. And if it's, how do you doing? how is your environment of tests?

@MichelDiz
Copy link
Contributor

MichelDiz commented Jan 19, 2018

Anyway this logic could be applied to create a Connector with Primas. Even independent of native Dgraph support. It could be a generic Connector within the Primas that use Dgraph-JS Cliente.

These logical definitions could have a "persistent" format in the Connector. So every record made by the Connector would keep a pattern. And when the Prisma Dgraph Connector requested the data again, it would have the same format that it was modulating.

So technically you do not need native and perfect support from Dgraph. It would be like Join-Monster. This creates Queries based on GraphQL Schema AST.

Refs:
https://github.com/graphcool/prisma/issues/1648
https://github.com/stems/join-monster

@0xSalman
Copy link

0xSalman commented Feb 1, 2018

@ptpaterson

Thank you for sharing your thoughts. Do you by any chance have a sample code to share? I would love to see what you have and contribute to it if I can

@ghost ghost mentioned this issue Feb 12, 2018
@dgraph-bot dgraph-bot added the kind/enhancement Something could be better. label Mar 28, 2018
@manishrjain
Copy link
Contributor

manishrjain commented Jun 27, 2018

Dgraph already natively supports a modified version of GraphQL. So, supporting the official spec would be native and should perform better than the overlay support that Neo4j and others have implemented.

@D1no
Copy link

D1no commented Aug 10, 2018

Wow, thanks @sorenhoyer ! I just checked if dgraph is compatible now with apollo - but (though its odd) - learned that neo4j has a graphql api. That helped a lot!

PS: This issue is now older than one year... the lack of "native" client compatible GraphQL and a solid way to explore the Graph data with a GUI is a big standing barrier to approach dgraph for any project. I hope you guys make the turn some time. DX is key.

I think this was one very bad turning point decision:

Honestly, my concern here is that we're figuring out about GraphQL as we're moving forward. And I just don't know to what extent can we push it to behave like a Graph language and yet remain within its specs. If we're going to deviate anyway, I don't want to push too hard to stay within the specs. OTOH, if there is a convergence path, then I'm all for it. GraphQL ecosystem is surely growing, and we'd love to be part of that.

@frankdugan3
Copy link

The authors of GraphQL have stressed on multiple occasions that it isn't intended as a complete query language for traversing graph dbs, or server-to-server. It's a server-client API. That's why Dgraph modified the syntax in the first place. Far better than standard GraphQL would be full support of both Gremlin and Cypher.

In most cases, there is going to be some incongruity between the storage layer and the API. Some fields should be hidden (passwords), some are computed server-side, etc. There's caching, throttling, authentication and authorization, input validation, etc. Having client-compatible GraphQL really doesn't accomplish much because 99% of the time Dgraph will still have to pass through the API server anyway to implement the things that are far outside the scope of responsibility for a database.

I think it would be far more valuable to contribute Dgraph support to something like Prisma.

@smkhalsa
Copy link
Author

Prisma support would be awesome

@D1no
Copy link

D1no commented Aug 11, 2018

At the end of the day, it doesn’t matter what the technicalities are and what happens under the hood. Having no first class GraphQL<->Client support has inhibited dgraphs outlook as a deal breaker.

@frankdugan3
Copy link

I can't think of a realistic production scenario where lack of DB support for GraphQL clients is a deal-breaker. Most production GraphQL API's are backed by MySQL/Postgres or Mongo. And even then, it's probably behind another layer of indirection via an ORM. The lack of GraphQL support on the DB a complete non-issue for the vast majority of GraphQL API's. I'm actually really curious about how this would be used to connect directly to the client in a real-world app.

This issue has the participation of less than 1% of the Dgraph userbase because connecting directly to the client via GraphQL is simply not a normal expectation for a DB.

@MichelDiz
Copy link
Contributor

MichelDiz commented Aug 11, 2018

I agree with Frank Dugan. I believe that forcing the Dgraph to keep behind GraphQL might be a disadvantage. Because the Dgraph can evolve to such an extent that it would not be predicted by the current GraphQL language. Several features in Dgraph would not be predicted in GraphQL.

Ideally, anyone who wants to have GraphQL support creates an API linked to Dgraph. Today there is dgraphql which is very interesting and there is the possibility of Prisma entering the game. These are valid proposals that do not leave the Dgraph stuck.

Nevertheless, perhaps Dgraph could work on internal support for creating a GraphQL API. Just as other DBs provide a REST API. I believe that this can be implemented in the long term. But for those in a hurry, there is dgraphql and maybe Prisma.

And I think the advantage of Dgraph being similar GraphQL with GraphQL + - is very good, even though it has several different things. Similarity helps in production. Just that.

@D1no
Copy link

D1no commented Aug 11, 2018

I can't think of a realistic production scenario where lack of DB support for GraphQL clients is a deal-breaker.

You might want to check the original spec thread by sashko, talk to the Prisma/GraphCool guys or reflect on the general notion, that there seems to be quite some demand to align GraphQL with a “true graph structure” because it decouples one from the limitations of rational databases and homogenizes the skills of the product people with the skills of the analysts (like back in the day with SQL).

Anyhow, a top down answer is: If it’s so irrelevant, why did neo4j see the demand and why do people demand it?

In the end, this is a matter of seeking adoption. As long as dgraph (without such features) keeps missing the 10x better threshold compared to the next graph database, there is little drive to onboard risk averse peers.

@frankdugan3
Copy link

My primary point, which was completely unaddressed, is this: No major database has been shunned in real-world production apps for lack of direct-to-client GraphQL implementations.

Facebook does not build it this way, and they designed the spec. They recommend a completely decoupled business logic layer to handle the actual fetching of data from the DB. It's just not best practice to direct connect no matter what the query language. Exceptions being perhaps Firebase/Couchbase, but those examples have pretty serious limitations in functionality. It's not that this style of DB is irrelevant, it's just not realistic to expect all new databases to provide an entire API framework for GraphQL. It's also important to consider leaving open the possibility of a polyglot backend.

Dgraph has many other areas of growth that are FAR more important for adoption before this proposal. When a team is evaluating an up-and-coming DB, the primary question is not going to be, "Did they shoehorn the API query language we like into the client drivers?" The questions are going to be the fit to domain model, the constraints, the type system, the reliability, the scalability, the financial situation of the company developing it, etc.

Neo4j does not directly support GraphQL. They created a library to translate GraphQL queries into Cypher, the primary purpose being to make it easier to write resolvers. This still requires standing up a GraphQL server. The more advanced features of Cypher are accessed by type annotations on the server-side, not directly accessible to the client because in their words:

GraphQL is fairly limited when it comes to expressing complex queries such as filtering, or aggregations.

I think they know what they're talking about.

Bringing up Prisma/Graphcool is actually supporting the idea that direct connections are untenable in the long run. Graphcool originally tried to be a complete framework generated from GraphQL SDL and it proved to be too difficult to handle all the edge cases where the storage layer was different than the operations exposed to the client. With Prisma it basically became an ORM where you still have to stand up your own GraphQL API, and even though one could interface to Prisma with GraphQL, it's usually done via the JS binding like most other ORMs. I felt this growing pain with my production apps, watching feature requests on Github, hoping the features I needed would be released for Graphcool, and can say Prisma was definitely the better way to go.

Some people are asking for direct-to-client GraphQL API's for databases, but far from the majority. I used to think this was important, but I think that was my inexperience showing. The idea of being able to bypass writing the API server is tempting, but it only works in very, very simple scenarios, and it burdens the DB with many problematic concerns that already have great solutions in API frameworks.

@D1no
Copy link

D1no commented Aug 12, 2018

I believe you get lost between a technical argument and a business one.

No major database has been shunned in real-world production app for lack of direct-to-client GraphQL implementations.

Could you point me to the minor ones? People like me have an interest for such alternatives.

But yes, you are right — at the end of the day, no major DB has been shunned for a lack of a REPL, Rest, a GUI, Persistance, Vertical Scaling, No Support for standard BI tools and so on — as long it saves data.

There is simply a difference between providing a database and a application layer solution. Not rooting for the later is (in my opinion) a mistake. And with the — maybe accidental — use of the GraphQL keywords in the dgraph project description, I only got to follow this project as one of many particularly interested in just that.

It’s sad that there is no first class spec conform GraphQL support - and be it a transpiler to the internal specless GraphQL Version. The user does not care.

I personally find dgraph after 1,5 years In a “stuck in the middle approach” of not using a industry standard DSL like Cypher but also not implementing / caring / driving “a recent” data layer innovation like GraphQL.

Right now, there is little differentiation, more risk and more work to even get started with dgraph as an alternative. And I really looked forward to it being different: https://twitter.com/dinoscheidt/status/946711393209868288?s=21

It’s not.

@frankdugan3
Copy link

I don't think I could point to any minor DB's that have been shunned specifically for lack of GraphQL support either. Perhaps I should have said "any" rather than "major."

I wholeheartedly agree that lack of Cypher, and I'll add gremlin, has very much hurt adoption of Dgraph.

GraphQL is intended to stick many backend systems together for a unified client API, and nothing currently prevents Dgraph plugging into that stack the same way every other DB out there does. A library like Neo4j created to help writing resolvers or a Prisma connection would go a long way to making that very seamless.

But to plug directly into the DB from a client... Dgraph doesn't even have a concept of users or permissions. This would probably require a fundamental redesign of the architecture to implement. I don't think it's anywhere near the intended scope of the project. It sounds something like Firebase, which in my experience has great momentum at first, feels super productive, and then dumps on you with the limitations later on.

The true power of GraphQL is preserving a unified, consistent, flexible client API while completely decoupling the underlying architecture, not in coupling it tightly to the persistence layer.

@D1no
Copy link

D1no commented Aug 21, 2018

I think we entered a loop here. I close this discussion from my side and point to how others reason about it. After all, my triggering comment up above is about “the mistake to have GraphQL slip from the radar” for dgraph.

For example, the guys from sanity.io handle the problem with their graph query language (called GROQ) and GraphQL at (seemingly) first priority. They also currently lack GraphQL support. In the presentation below they acknowledge the same technical hurdles you bring up, but do not shy away of bridging to the value of GraphQL as a community in first class support. Maybe the dgraph team can jump on that to re-asses the priority GraphQL. Those guys seemingly build a transpiler as suggested before.

https://youtu.be/Jcfubj2zRI0
f52ebcb7-725a-4044-88ac-eb6c6578f275

@smkhalsa
Copy link
Author

It's interesting to see how neo4j is handling graphql support.

In addition, their neo4j-graphql-js library provides a way for grpahql servers to delegate graphql resolver resolution to neo4j while still allowing query flexibility on a field-by-field basis with Cypher directives, defined directly in the schema.

Some options for dgraph:

  1. Implement cypher - this would allow users to use the existing neo4j-graphql-js library
  2. Create a similar library to neo4j-graphql-js that defers resolver resolution to dgraph with the option to customize specific field resolvers with graphql+- using a custom directive.

@MichaelJCompton
Copy link
Contributor

I'm building this, which will address lots of the GraphQL points for Dgraph.

https://discuss.dgraph.io/t/graphschema-a-tool-to-spin-up-a-graphql-api-with-a-dgraph-backend-database/3783

@styk-tv
Copy link

styk-tv commented Jan 4, 2019

@MichaelJCompton awesome work, a bit too bad its in #C instead of Go. Any chance you could lock this in a docker container so we can try this launched into docker/kubernetes as a side container?

@manishrjain manishrjain mentioned this issue Jan 14, 2019
14 tasks
@manishrjain manishrjain added kind/feature Something completely new we should consider. and removed kind/enhancement Something could be better. labels Jan 14, 2019
@campoy campoy added area/graphql Issues related to GraphQL support on Dgraph. priority/P1 Serious issue that requires eventual attention (can wait a bit) status/accepted We accept to investigate/work on it. labels Jul 9, 2019
@campoy campoy modified the milestones: v1.x, Dgraph v1.2 Jul 9, 2019
@Xample
Copy link

Xample commented Sep 19, 2019

What is the status of this issue ? Also, would it be relevant to support opencrud for a first version ?

@pawanrawal
Copy link
Contributor

Hey everyone! We're excited to announce that we have a beta release for Dgraph GraphQL. Give it a try and let us know what do you think about it.

You can read all about the challenges we faced, our learning's and the future at https://blog.dgraph.io/post/building-native-graphql-database-dgraph/.

@smkhalsa
Copy link
Author

@pawanrawal I just read through the docs, and I can't wait to start playing around with this! I was pleasantly surprised to see that interfaces made the cut for the initial version.

You mentioned here that:

we’ll be adding... ways you can define your own queries backed by whatever GraphQL+- you like

This could resolve several of the initial limitations that I see for my use case (e.g. aggregations). Will this functionality be exposed through a custom directive? How would this work?

Also, are there plans to support facets (and filtering / sorting on facets)? neo4j-graphql-js handles this with relationship types.

Finally, has any thought gone into Relay Cursor Connections for pagination?

@a-type
Copy link

a-type commented Nov 4, 2019

I'll preface this, since it turned into a big wishlist and I know this feature is still really early on: I'm loving this so far and it may have won me back to DGraph for graph databases. It's been so surprisingly hard to marry graph databases and GraphQL APIs, and it's wonderful to see progress being made! So thank you, and this initial release is already looking excellent! My comments below are mainly related to where I would hope the roadmap is going; mainly making sure that pagination is not overlooked.

I will add my interest in Relay-style Connections for pagination. You could move forward with the current plain lists, and add entirely new fields with a xConnection suffix which return full Relay connection objects later. But I think it's better to address more expressive pagination semantics now than later. You could even 'bookmark' this just by switching from returning plain lists to returning an intermediate response type which has a field like nodes that would hold the current list response, leaving the door open to add more fields (like edges, pageInfo) later to implement the Connection spec.

Like many other developers I think, I initially resisted the 'complexity' of Relay's guidelines, but nowadays I wouldn't start a project without them. Client-side pagination is simply too complicated to implement for anything less at the moment. Everything seems nice with plain lists, until you start thinking about how to do an infinite feed, and add new items to the list with mutations, delete them... things are just far easier when there's a pageInfo field and cursors present.

I think if you want to use GraphQL at such a low layer, that kind of expressiveness is a must. I want to at least know if there's a next page to my data, and if at all possible to do cursor-based paging. It won't be possible to provide this kind of API to the frontend without it already being present at the database level.

And while we're at it, a Node interface and node(id: ID) query field! It's nice to be able to refetch arbitrary nodes at will. I don't even actually use Relay client-side, but I can plainly see that the team's experience in GraphQL has produced some universally helpful patterns, and it would be wise to lean on that wisdom.

I'm very interested in defining fields with arbitrary GraphQL+-, and that could open the door to address just about anything if it's powerful enough. I've done a lot of experimentation with annotating a client-facing GraphQL schema with underlying database fetching instructions (here with Cypher, and later here with ArangoDB's AQL). It can do wonders for implementing advanced use cases efficiently, but does have its drawbacks.

Oh, one last edit: returning intermediate response types for mutations is also a big deal. Doing that now will free up a lot more flexibility in the future.

@MichaelJCompton
Copy link
Contributor

As of 20.03.0 Dgraph has support for spec compliant GraphQL.

We are committed to further enhancing that support in future releases (watch out for things like subscriptions, custom logic and auth int 20.07.0, we'll also be adding a roadmap for the future) and in showing how to use Dgraph with other parts of the GraphQL ecosystem.

This has been one of Dgraph's most popular issues, so thank you to everyone who has added comments over the years.

If there are features in our GraphQL support you'd like to see, please add those as individual issues and we'll consider each one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/graphql Issues related to GraphQL support on Dgraph. kind/feature Something completely new we should consider. popular priority/P1 Serious issue that requires eventual attention (can wait a bit) status/accepted We accept to investigate/work on it.
Development

No branches or pull requests