Log in to GraphQL Editor
GraphQL vs REST
Tomek

Tomek Poniatowicz

12/27/2018

GraphQL vs REST

Is GraphQL a nail to the REST coffin or a tool to empower your REST APIs?

REST has become the standard for designing web APIs. It introduced some great ideas like stateless servers or structured access to resources. Over the past years REST API was the best (only) available solution but due to the rapid evolution of web development REST wasn't able to keep up with changing requirements of the clients that access them.

In 2012 the GraphQL was developed. The main goal for GraphQL was to solve many of the shortcomings and inefficiencies that developers were experiencing while working with REST APIs.

Data Fetching with REST vs GraphQL

When using a REST API you would gather the data by accessing multiple endpoints. In the example, you would first call endpoint to fetch the initial user data, then make a sperate call to fetch its all properties.

REST.webp Source: howtographql.com

In GraphQL it’s handled totally different. The specification for queries is encoded in the client rather than on the server side. You would simply send a single query to the GraphQL server that includes the concrete data requirements and the server will respond with a JSON object where it will returns exactly what you required, nothing more.

GQL.webp Source: howtographql.com

Nothing is perfect

New approach definitely has its pros and fixed many issues that developers complained about while working with REST, but there are some issues that trouble both technologies and on some fields REST is still a better solution. To summarize cons and pros take a look at below juxtaposition.

GraphQLREST API
No Over/Under Fetching Problem+-
Easy Fetching of Related Resources+-
Great Client Performance+-
Easy Caching-+
Scoped Includes--
Easy Deprecations+-

Check out our other blogposts

API PLATFORM - a framework to build modern API
Tomek Poniatowicz
Tomek Poniatowicz
API PLATFORM - a framework to build modern API
2 min read
almost 4 years ago
Installing MongoDB for GraphQL
Artur Czemiel
Artur Czemiel
Installing MongoDB for GraphQL
4 min read
over 5 years ago
Introduction to GraphQL
Tomek Poniatowicz
Tomek Poniatowicz
Introduction to GraphQL
4 min read
about 4 years ago

Ready for take-off?

Elevate your work with our editor that combines world-class visual graph, documentation and API console

Get Started with GraphQL Editor