Justin
Justin

Reputation: 3039

What potholes are there Using Graphql with RethinkDb?

As I understand it's possible graphql with rethinkdb. You can use graphql to query really any data set as its just the middleware really. What issues do I need to watch out for in this implementation? Server will be node.js in my case.

Documentation / examples of others doing this seam lacking.

Upvotes: 0

Views: 895

Answers (1)

jkettmann
jkettmann

Reputation: 707

I'm using GraphQL together with RethinkDb and don't see any particular problems in using them together compared to an implementation of a rest api or using mongo etc.

Here are two github projects using GraphQL and RethinkDb (the first one is more lightweight):

Upvotes: 2

Related Questions