GraphQL vs. REST APIs

Nicole GathanyNicole Gathany
5 min read

Today I was reflecting on an interview I had last year where the interviewer said “At your last company, you used GraphQL. I’m surprised that you didn’t use REST APIs.” If I can be really transparent and vulnerable with you all here, I was caught off guard because I honestly didn’t know they were alternatives to each other. For one, while I worked on many backend tickets, the only times I interacted with GraphQL was when 1) I was on-call and got a ticket that said the system was fetching a particular data point too often when a user clicked a button and 2) when I was working on a feature ticket that improved way users canceled subscriptions. Now that I explain how I used it, it makes sense that they are alternatives to each other. However, before working on the first ticket, I looked up “GraphQL” and just saw that it was a query language. I just thought “Cool. Query language. Kind of like SQL (which we also used).” I learned the syntax for GraphQL. I finished the tickets and changed the way we canceled subscriptions and the way fetched data by changing the queries. Bing, bang, boom, done. Now that I’m talking about it, I feel so silly. In one ticket, I’m fetching data. On the other, I’m deleting data. That is exactly what REST APIs do. Why didn’t I see it before?

If you’re totally lost, that’s ok! Let’s break it down together.

What does REST stand for?

REST stands for Representational State Transfer. What is that? It’s an architectural style that has standards for how systems communicate with each other.

What is an API?

An API, which stands for Application Program Interface, is a mechanism that enables an application or service access to a resource with another service.

What is a REST API and how does it work?

REST APIs communicate through HTTP requests to perform standard database functions like creating, reading, updating and deleting records (you might know this as CRUD) within a resource.

What is GraphQL?

GraphQL is a query language developed by Facebook that provides a more flexible approach to interacting with APIs. Rather than hitting multiple endpoints or receiving more data than you need (as can happen with REST), GraphQL allows clients to specify the exact data they want, all in one request. It can fetch data from multiple sources and present it in a unified response.

Now that we know what GraphQL and REST APIs are, how are they related and why did my interview speak of them in the same sentence? The key similarity are that they are used to fetch data and help client interact with APIs. A software engineer might use one versus the other based on how they want to fetch data. GraphQL has been said to used instead of REST API if we want to avoid over-fetching data.

What do GraphQL and REST API have in common?

  • Purpose: Both GraphQL and REST are designed to help clients interact with APIs. They enable data retrieval and manipulation, allowing developers to build applications that consume backend services.

  • Client-Server Architecture: Both adhere to a client-server architecture, where the client requests data from a server, which processes the request and sends back the appropriate response.

  • HTTP Protocol: They both typically use HTTP as the communication protocol, allowing developers to leverage standard web technologies.

  • Resource Representation: Both methods focus on resource representation. REST APIs expose resources via endpoints, while GraphQL provides a schema that defines the types and relationships between resources.

  • Versioning: In practice, both approaches can struggle with versioning. REST APIs often require creating new versions for changes, while GraphQL aims to be more flexible by allowing clients to request only the data they need, reducing the need for versioning.

How are they different?

  • REST APIs often return entire objects of data. For example, if you ask for user details, you might get the user’s name, address, and phone number, even if you only needed the name. This can lead to over-fetching of data.

  • GraphQL addresses this by letting the client specify exactly what fields it wants, avoiding the problem of over-fetching. You can think of it as ordering exactly what you want from a menu instead of having to take the whole meal.

Why might you use one over the other?

  • REST APIs are simple, widely used, and great for applications that need well-defined, resource-based endpoints.

  • GraphQL, on the other hand, is preferred when you need more flexibility and efficiency in fetching data, especially in applications with complex data structures or multiple data sources.

What are other alternatives?

I won’t go into too much detail but alternatives to both GraphQL and REST APIs are AJAX, WebSockets, and WebRTC. This blog post describes REST APIs and GraphQL as well as Websockets, Server-Sent Events, WebRTC, gRPC, Axios, and Fetch APIs all as alternatives to AJAX (although from my understanding AJAX applications now typically utilize Fetch APIs as opposed to XMLHttpRequests to fetch data.

Conclusion

When it comes to choosing between GraphQL and REST APIs, there's no one-size-fits-all answer. Both have their strengths and use cases, and understanding them allows developers to make informed decisions based on the needs of their projects. REST APIs provide simplicity and are widely adopted, making them great for well-structured, resource-based applications. On the other hand, GraphQL offers more flexibility and precision, especially when working with complex data from multiple sources or when you want to avoid over-fetching.

As I reflect on that interview, I now see how valuable it is to understand these technologies not just as isolated tools but as alternatives that solve similar problems in different ways. Whether you're fetching data via REST or GraphQL, or even exploring alternatives like WebSockets or AJAX, it’s about choosing the right tool for the job.

Ultimately, being adaptable and open to learning is key in software engineering, and it's okay to not have all the answers right away—what matters is how we grow and evolve in our understanding. So whether you’re using REST, GraphQL, or any other tool, the important thing is knowing when to use which one and why.

0
Subscribe to my newsletter

Read articles from Nicole Gathany directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Nicole Gathany
Nicole Gathany

I am a people-centered software engineer with a past life in public health and reproductive justice. I'm using this blog to combine my love for tech and communication.