Relay Client For Existing Working Graphql Server?
I have working tinySQL GraphQL server running at 127.0.0.1:3000. I would like to create any working Relay client for it. I mean any working example for query: { groupBy (age: 20
Solution 1:
As far as I know that is not possible with Relay. You not only need to use Relay's babel plugins, but your server also has to match the Relay GraphQL spec.
However, there are alternatives to Relay that require much less boilerplate, such as Apollo Client or Lokka. If you're looking for good React integration, then Apollo Client is probably the right choice for what you describe.
Full disclosure: I am a contributor to Apollo Client
Post a Comment for "Relay Client For Existing Working Graphql Server?"