The fastest way to get started with GraphQL
1–10 of 13 posts
Re: The fastest way to get started with GraphQL
#2Sounds like GraphQL is undoubtedly making headway with the help of the community and services sprouting around it.
Re: The fastest way to get started with GraphQL
#3Great article Vincent and Michael! The progress you guys have made so far is incredible. Keep up the good work!
Re: The fastest way to get started with GraphQL
#4What sort of transition-related problems could arise when making the switch from REST to GraphQL?
Re: The fastest way to get started with GraphQL
#5Sounds like GraphQL is undoubtedly making headway with the help of the community and services sprouting around it.
Certainly. There tends to be quite a few posts about GraphQL on tech blogs these days, and a primary reason for this post is to drive the point home that although it's new, it's not hard to use, especially with the help of major tooling like Apollo Client and Relay.
Re: The fastest way to get started with GraphQL
#6Very detailed guide. Thanks guys! Exciting progress.
Re: The fastest way to get started with GraphQL
#7Awesome stuff! Could you link me to an existing app that is using Scaphold? Would be awesome to see something up and running
Re: The fastest way to get started with GraphQL
#8This was a very helpful, informative guide. I love the fact that your service has such a low barrier of entry - you'll get a lot of apps hooked on what you do. I'm excited to see where you all take this!
Re: The fastest way to get started with GraphQL
#9What sort of transition-related problems could arise when making the switch from REST to GraphQL?
There's two ways you can do this cleanly. One is to start from scratch and create a GraphQL server that directly hits your data source(s) by replacing the REST component of it. The other is to create a GraphQL schema that serves as a gateway to your REST app. In both solutions, you'll be creating GraphQL types for your input and return types, and re-writing your calls on your client apps to conform to GraphQL. However, the long-term benefit of this is that you can write your queries once, and run them anywhere on any client app platform.
Re: The fastest way to get started with GraphQL
#10Awesome stuff! Could you link me to an existing app that is using Scaphold? Would be awesome to see something up and running
We're currently not aware of any live production sites up and running right now from our users. However, we do have an open Github repo (https://github.com/scaphold-io) with production-ready boilerplates for React and React Native with Relay. Within the week, we'll release more that use client frameworks like AngularJS and React with Apollo Client.
To provide examples of what we've seen so far, we've seen block chain models, chat bot apps, and music apps hosted on Scaphold to give you an idea of how complex they can get.