DEV Community

Cover image for How to Implement a GraphQL API on Top of an Existing REST API
Tyler Hawkins
Tyler Hawkins

Posted on • Originally published at codeburst.io

How to Implement a GraphQL API on Top of an Existing REST API

Where do you keep your dad jokes? In a dadabase of course! Let’s imagine that you are a site maintainer for the world’s best dad joke database. Your app communicates with the database using a REST API that allows you to retrieve jokes and post ratings for those jokes. Visitors to your site can rate each joke they see via a simple user interface.

Recently you heard of a fancy new technology called GraphQL that provides the flexibility to request only the data that you need using a single API endpoint. It sounds neat, and you’d like to start using it in your app. But, you’d really prefer not to make any breaking changes to the existing REST API. Is it possible to support both the REST API and the GraphQL API in your app? You’re about to find out!

In this article we’ll explore what it takes to implement a GraphQL API on top of an existing REST API. This strategy allows you to start using GraphQL in legacy portions of your app without breaking any existing contracts with functionality that may still rely on the original REST API.

If you’d like to see the end result, you can find the code for the REST API here and the code for the frontend and GraphQL API here. Don’t forget to visit the app as well to groan at some jokes.


The Initial Architecture

The app’s backend was originally built using Node and JSON Server. JSON Server utilizes Express to provide a full REST API to a mock database generated from a simple JSON file. A separate Express server takes care of serving the static HTML, CSS, and JavaScript assets for the frontend. The frontend is implemented in vanilla JS and uses the browser’s built-in Fetch API to make the API requests. The app is hosted on Heroku to make deployment and monitoring a breeze.

Our JSON file contains information for a few jokes as well as some ratings. It’s reproduced in full below:

JSON Server takes that file as a starting point for the database and then implements a REST API that includes support for GET, POST, PUT, PATCH, and DELETE requests. The magic of JSON Server is that using this API really does modify the underlying JSON file, so the database is fully interactive. JSON Server can be started directly from an npm script without any additional setup, but in order to provide a little more configuration and a dynamic port, we can instead write a few lines of code like so:

You can test out our mock database by cloning the repo for the API, running npm install, and then running npm start. If you navigate to http://localhost:3000/jokes you'll see all of the jokes. Navigating to http://localhost:3000/ratings will display all the ratings.

/jokes API endpoint returns all the jokes when running the app locally

/jokes API endpoint returns all the jokes when running the app locally

Wonderful! We can run our app’s backend locally in the browser. Now let’s get our API hosted on Heroku. First, we need to install the Heroku CLI. After that, we can log in, create the app, push it to Heroku, and open the new app in our browser in four easy steps:

# log in to your Heroku account
heroku login

# create the Heroku app
heroku create dad-joke-dadabase-rest-api

# deploy the code to Heroku
git push heroku master

# open the Heroku app on your machine
heroku open
Enter fullscreen mode Exit fullscreen mode

And look, now we have a publicly available API out on the web!

/jokes API endpoint returns all the jokes when hosting the API on Heroku

/jokes API endpoint returns all the jokes when hosting the API on Heroku

Building the User Interface

Now that we have a working REST API, we can build the frontend to consume that API and display the user interface for viewing and rating jokes. The HTML provides a shell of the page with containers into which the JavaScript will insert content for each joke.

The JavaScript is shown below. The key pieces that interact with the REST API are the two fetch requests. The first fetches all of the jokes from the database by hitting the /jokes?_embed=ratings endpoint. The second makes a POST request to the /ratings endpoint to submit a new rating for each joke you rate.

Dad joke "dadabase" user interface allows you to rate each joke

Dad joke "dadabase" user interface allows you to rate each joke

Setting Up Apollo Server

So, that’s the existing app architecture: a simple frontend that interacts with the database via a REST API. Now how can we begin using GraphQL? We’ll start by installing apollo-server-express, which is a package that allows us to use Apollo Server with Express. We'll also install the apollo-datasource-rest package to help us integrate the REST API with Apollo Server. Then we'll configure the server by writing the following code:

As you can see, we configure Apollo Server with type definitions (typeDefs), resolvers, and dataSources. The typeDefs contain the schema for our GraphQL API. In it, we'll define types for our jokes and ratings as well as how to query and mutate them. The resolvers tell the server how to handle various queries and mutations and how those link to our data sources. And finally, the dataSources outline how the GraphQL API relates to the REST API.

Here are the type definitions for the Joke and Rating types and how to query and mutate them:

The jokes data source defines methods for calling the original REST API endpoint to create, read, update, and delete jokes from the database:

The ratings data source looks nearly identical, but with “rating” substituted for “joke” in every instance. (Refer to the GitHub repo if you’d like to see the code for this.)

Finally, we set up our resolvers to show how to use the data sources:

With that, we have everything in place we need in order to start using our GraphQL API through Apollo Server. To get our new frontend and GraphQL API hosted on Heroku, we’ll create and deploy a second app like so:

# create the Heroku app
heroku create dad-joke-dadabase

# deploy the code to Heroku
git push heroku master

# open the Heroku app on your machine
heroku open
Enter fullscreen mode Exit fullscreen mode

Replacing the Endpoint to Fetch Jokes

You’ll recall that we have two endpoints used by the frontend: one to fetch jokes and one to post ratings. Let’s swap out the REST API for our GraphQL API when we fetch the jokes. The code previously looked like this:

Now to use the GraphQL endpoint, we can write this instead:

We can run the app locally now and verify that the user experience still works properly. In fact, from the user’s point of view, nothing has changed at all. But if you look at the network requests in your browser’s developer tools, you’ll see that we’re now fetching our jokes from the /graphql endpoint. Amazing!

The Network tab shows a request is being made to the /graphql endpoint now

The Network tab shows a request is being made to the /graphql endpoint now

Replacing the Endpoint to Submit Ratings

One API request down, one to go! Let’s swap out the ratings submission functionality now. The code to post a new joke rating previously looked like this:

To use our GraphQL API, we’ll now use the following:

A quick test gives us some promising results. Once again, the user experience remains unchanged, but now we’re fully using the /graphql endpoint for both our requests!


Conclusion

We did it! We successfully wrote a GraphQL API endpoint on top of an existing REST API. This allows us to use GraphQL to our heart’s content without breaking existing functionality and without modifying the original REST API. Now we can deprecate the REST API or get rid of it completely at a later date.

While our dad joke database is entirely fictional, nearly every technology company that existed prior to GraphQL’s release in 2015 will find themselves in this same position of migrating to GraphQL if and when they choose to do so. The good news is that Apollo Server is flexible enough to pull data from a variety of sources, including existing REST API endpoints.

Top comments (5)

Collapse
 
remotesynth profile image
Brian Rinaldi

Hey Tyler, thanks for this article. Interesting timing as the startup I work for just released a new feature that turns any REST endpoint into a GraphQL one in case you are curious stepzen.com/blog/how-to-connect-an...

Collapse
 
thawkin3 profile image
Tyler Hawkins

Neat! Thanks for sharing, Brian. I read the blog post you linked, and it feels like a very similar approach for layering the GraphQL API on top of the REST API by defining your schema, the queries, and how they link up to the original REST API endpoint. You guys are on to something!

Collapse
 
remotesynth profile image
Brian Rinaldi

Thanks. If you have any interest in trying it out (we're still in early alpha), lemme know.

Collapse
 
parkadzedev profile image
Michael Parkadze

Great article Tyler, very interesting and practical.

Collapse
 
thawkin3 profile image
Tyler Hawkins

Thank you!