Graphcool Eases Your Way Into GraphQL
Written by Nikos Vaggalis   
Wednesday, 24 May 2017

GraphQL, dubbed by many as REST's successor, is a query language in which you can query database driven, JSON schema-exposed APIs. The problem is that because it is so different from REST, getting the hang of GraphQL when starting out is not that easy. 

But why go the trouble now that there are cloud-based FaaS (Framework as a Service) services such as Graphcool which take the pain out of the process of setting up, configuring, running and testing your GraphQL backend? 

Graphcool is a newly established GraphQL backend for mobile and web developers that lives on the AWS cloud:

  • Data is persisted in a high-availability cluster of AWS Aurora databases combined with a Redis-powered caching layer.

  • Files are securely stored in Amazon S3 and can be accessed through a fast CDN.

  • Business Logic is implemented as serverless functions and deployed to AWS Lambda.

  • Website Hosting uses Netlify's CDN.

and lowers the entry barrier in getting into GraphQL.

With Graphcool you don't have to write any code in order to set up your GraphQL infrastructure;everything is performed visually through the Console, a web based point and click designer which generates the underlying code conforming to your design and specifications. Of course, that does not rule out text based editing, quite the contrary.
 
So one Console (built with React, Relay and TypeScript 2) to rule them all, provides central management and through its interfaces a wide range of possibilities for your GraphQL projects :

  • The Schema Editor gives you an overview of your GraphQL schema and allows you to do schema migrations either visually or on a textual basis.

  • In the Data Browser you can view the stored data for the different types in your GraphQL backend, modify them or create new one.

  • In the Permission View you can view and modify permissions for operations based on types and relations in your schema.

  • The Integrations View allows you to enable or disable the available integrations and configure their credentials.

  • The Functions View gives an overview over existing functions, including most recent invocations and a detailed execution log.

  • In the Playground, you can explore and execute all GraphQL queries, mutations and subscriptions available in your GraphQL API.

 

There's even example projects and a quick interactive tutorial  to ensure a smooth transition  and familiarization with the Console. Navigating through the example project, you learn to create Types and Fields for your Schema as well as insert its underlying data.In this case, the example had us create a 'Post' type with two custom fields, 'imageUrl' and 'description', and import the related data, images of cats.

In the Playground, we can then test our queries against our backend. For example, in asking for all Post's type's records and retrieving both the imageUrl and description fields:

 

Request:
{
  allPosts {
    imageUrl
     description
  }
}

 

Reply:
{
  "data": {
    "allPosts": [
      {
        "imageUrl": "http://bit.ly/2pLtEdd",
        "description": "Cat"
      },
      {
        "imageUrl": "http://bit.ly/2pLDBrf",
        "description": "Another Cat"
      }
    ]
  }
}

 

That's just getting our feet wet though, as there's much more you can do, for example set handlers or callbacks which are triggered in response to Mutation events, i.e. when our GraphQL backend is issued a request to update its data. The handler that will respond in turn can be an AWS Lambda function written in one of the programming languages provided by Amazon. Check out our tutorial on AWS and Lambda functions in AWS Lambda For The Impatient Part 1.

The same goes for the available Integration options. Choose one of the popular third party services of Algolia, Auth0 and Digits, to plug into its GraphQL apps in a snap.

After configuring and setting up your project you are given a HTTP Endpoint where your service is listening, ready to be accessed programmaticly, either by lowly clients such as cUrl :

for example, to query allUsers through a  POST request to your endpoint https://api.graph.cool/simple/v1/__PROJECT_ID__.

with cUrl, you do :

curl 'https://api.graph.cool/simple/v1/__PROJECT_ID__' -H 'content-type: application/json' --data-binary '{"query":"query {allUsers {id name}}"}' --compressed


or full blown React+Relay, React+Apollo, or Angular/Vue+Apollo ones.

There are several downloadable starter kits on which to base your project. Then it's a simple matter of integrating your endpoint requests into those client applications.

Applications can choose from two API's to interact with, the Simple API, used in the cUrl example above and highly recommended for use with Apollo too;  and the alternative Relay API, which is more complex. Although, the two APIs don't differ too much in features, they do so in usage. If you don't use Relay as a GraphQL client you probably should use the Simple API. If you decide to use Relay sometime later, you can easily switch to the Relay API or use both APIs.

For more info on Relay vs Apollo, check Comparing GraphQL clients for React apps, while if you're looking to get started with writing apps in Angular make sure you check out our review of Udemy's Angular 2 Course.

 

 

So whether a first timer in GraphQL or a seasoned dev, if you're eager to take the pain out of manually configuring, running and testing things, make sure you give Graphcool a try. Developers can start for free while in the development phase, and move to one of the flexible pricing plans once their project goes public.

 

 

More Information

Graphcool

Graphcool - Starter kits

Comparing GraphQL clients for React apps

Related Articles

AWS Lambda For The Impatient Part 1

Udemy's Angular 2 Course

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

Banner


SnapCode: A Java IDE for the Web
27/02/2024

Thanks to CheerpJ and WebAssembly you can now run a Java IDE inside your browser and local first.This is SnapCode, and while lightweight and in-browser, is to be not underestimated.



CISA Offers More Support For Open Source
22/03/2024

The Cybersecurity and Infrastructure Security Agency (CISA) has announced a number of key actions that they hope will improve the open source ecosystem.


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Friday, 11 September 2020 )