Writing GraphQL Server in Go

Tram Ho

Overview

As technologies evolved the need for application to interact with each other is also increase especially with the dominance of the mobile platform in recent year. GraphQL lets you ask for what you want in a single query with smaller payload, saving bandwidth and reducing waterfall requests. It also enables clients to request their own unique data specifications.

In this post we will look into how to write a GraphQL server application in Go by using the infamouse Todo list as an example. We’ll take a look at how to define GraphQL schema and connect it over HTTP.

Todo Service

First lets define our business logic that will expose two methods ListTodos, GetTodo and Todo type as below.

All todo items are store in a JSON file named todos.json and will be loaded during application start up and with this lets implement above interface.

The service implementation is pretty simple there is not to explain here and with this we can move on to the important part on how to define GraphQL schema.

GraphQL Schema

First lets define a object schema type to reflect our Todo struct. We do this with NewObject function from graphql-go/graphql package.

This object will have three fields id, name and completed with data type correspond to our Todo struct’s field respectively. The resolve function is to filter out specific field according to fields list from incoming GraphQL’s query for example

Next is how to defined query schema. For the purpose of this example application we will expose two queries name todos and todo with the first is to list all todo items and the last one is to get specific todo item by supplying id as query argument.

As you probably see that the actual logic to get todo list is by calling our server methods that we defined in the above section in resolve function of each query svc.ListTodos and svc.GetTodo. svc will be pass in as an argument to createSchema function that will compile the defined schema like this

Connect GraphQL with HTTP

Last but not least is to expose the graphql endpoint over http. We could write our own http server implementation to convert request and response back and forth but there a package that has already done that for us called graphql-go/handler, so let use it.

The option Playground is for development purpose only, with it can play around with the query once we hop onto http://localhost:8080/graphql

The complete main function will looks like this

The final touch is to open up the endpoint and play around with it like image below and that’s it!. Check out the link to the two packages for more document on how to define complex schema.

Share the news now

Source : Viblo