GraphQL vs REST API

An interactive comparison of API paradigms

GraphQL

{ }

Request

{
  user(id: "1") {
    name
    email
    posts {
      title
      comments {
        text
      }
    }
  }
}

Response

// Response will appear here
Requests: 0
Data Size: 0 bytes

REST API

/

Equivalent Requests

GET /users/1
GET /users/1/posts
GET /posts/1/comments
GET /posts/2/comments
...

Combined Response

// Response will appear here
Requests: 0
Data Size: 0 bytes

Key Differences

Data Fetching

GraphQL

Client specifies exactly what data it needs in a single request

REST

Server defines fixed data structures returned by multiple endpoints

Endpoints

GraphQL

Single endpoint for all operations

REST

Multiple endpoints based on resources

Over/Under Fetching

GraphQL

No over-fetching or under-fetching

REST

Often returns too much or too little data

Versioning

GraphQL

Continuous evolution without versioning

REST

Often requires explicit versioning (v1, v2)