Need advice about which tool to choose?Ask the StackShare community!

GraphQL

33K
27.2K
+ 1
310
JSON API

193
197
+ 1
0
Add tool

GraphQL vs JSON API: What are the differences?

Introduction

GraphQL and JSON API are two popular technologies used for building APIs. While both serve the same purpose of facilitating communication between clients and servers, there are key differences between them. This article will outline and explain six important distinctions between GraphQL and JSON API.

  1. Query Language vs Specification: The fundamental difference between GraphQL and JSON API lies in their approach to data retrieval. GraphQL is a query language that allows clients to request the specific data they need, and the server responds with only that data. On the other hand, JSON API is a specification that defines how the server should structure its responses, regardless of what the client requested.

  2. Flexibility vs Conformance: GraphQL offers more flexibility to clients as they can request any combination of data attributes in a single query, and the server responds accordingly. In contrast, JSON API follows a standardized structure where clients are limited to requesting predefined data structures. This provides consistency but sacrifices some flexibility.

  3. Over-fetching and Under-fetching: In traditional RESTful APIs, clients often face the problem of over-fetching or under-fetching data, resulting in inefficiency. GraphQL solves this issue by enabling clients to request precisely the data they need, eliminating over-fetching and under-fetching problems. JSON API, while avoiding over-fetching, may still suffer from under-fetching as clients are restricted to predefined data structures.

  4. Single Endpoint vs Multiple Endpoints: GraphQL operates on a single endpoint, meaning clients make a single request to fetch all the required data. In contrast, JSON API typically requires multiple requests to multiple endpoints to retrieve related resources. This difference reduces network overhead and improves performance in GraphQL.

  5. Nested vs Flat Structures: GraphQL allows clients to query and receive nested data structures, reducing the number of requests needed for related data. JSON API, on the other hand, typically employs a flat structure where related resources are represented as separate entities, requiring additional requests from clients to retrieve them.

  6. Strong Typing and Validation: GraphQL comes with a strong type system that defines the structure of the data and provides validation at compile time. This helps catch errors early and promotes reliable client-server communication. JSON API relies on external tools or libraries for validation and does not have built-in support for strong typing.

In summary, GraphQL and JSON API differ in their approach to data retrieval, flexibility, request efficiency, structure, and data validation. While GraphQL offers a more flexible and efficient way to query data with a single endpoint, JSON API provides a standardized structure that ensures consistency but sacrifices some flexibility.

Get Advice from developers at your company using StackShare Enterprise. Sign up for StackShare Enterprise.
Learn More
Pros of GraphQL
Pros of JSON API
  • 75
    Schemas defined by the requests made by the user
  • 63
    Will replace RESTful interfaces
  • 62
    The future of API's
  • 49
    The future of databases
  • 13
    Self-documenting
  • 12
    Get many resources in a single request
  • 6
    Query Language
  • 6
    Ask for what you need, get exactly that
  • 3
    Fetch different resources in one request
  • 3
    Type system
  • 3
    Evolve your API without versions
  • 2
    Ease of client creation
  • 2
    GraphiQL
  • 2
    Easy setup
  • 1
    "Open" document
  • 1
    Fast prototyping
  • 1
    Supports subscription
  • 1
    Standard
  • 1
    Good for apps that query at build time. (SSR/Gatsby)
  • 1
    1. Describe your data
  • 1
    Better versioning
  • 1
    Backed by Facebook
  • 1
    Easy to learn
    Be the first to leave a pro

    Sign up to add or upvote prosMake informed product decisions

    Cons of GraphQL
    Cons of JSON API
    • 4
      Hard to migrate from GraphQL to another technology
    • 4
      More code to type.
    • 2
      Takes longer to build compared to schemaless.
    • 1
      No support for caching
    • 1
      All the pros sound like NFT pitches
    • 1
      No support for streaming
    • 1
      Works just like any other API at runtime
    • 1
      N+1 fetch problem
    • 1
      No built in security
      Be the first to leave a con

      Sign up to add or upvote consMake informed product decisions

      What is GraphQL?

      GraphQL is a data query language and runtime designed and used at Facebook to request and deliver data to mobile and web apps since 2012.

      What is JSON API?

      It is most widely used data format for data interchange on the web. This data interchange can happen between two computers applications at different geographical locations or running within same hardware machine.

      Need advice about which tool to choose?Ask the StackShare community!

      What companies use GraphQL?
      What companies use JSON API?
      See which teams inside your own company are using GraphQL or JSON API.
      Sign up for StackShare EnterpriseLearn More

      Sign up to get full access to all the companiesMake informed product decisions

      What tools integrate with GraphQL?
      What tools integrate with JSON API?

      Sign up to get full access to all the tool integrationsMake informed product decisions

      Blog Posts

      GitHubDockerReact+17
      40
      36239
      GitHubPythonNode.js+47
      54
      72302
      What are some alternatives to GraphQL and JSON API?
      gRPC
      gRPC is a modern open source high performance RPC framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking...
      Falcor
      Falcor lets you represent all your remote data sources as a single domain model via a virtual JSON graph. You code the same way no matter where the data is, whether in memory on the client or over the network on the server.
      React
      Lots of people use React as the V in MVC. Since React makes no assumptions about the rest of your technology stack, it's easy to try it out on a small feature in an existing project.
      graphql.js
      Lightest GraphQL client with intelligent features. You can download graphql.js directly, or you can use Bower or NPM.
      MongoDB
      MongoDB stores data in JSON-like documents that can vary in structure, offering a dynamic, flexible schema. MongoDB was also designed for high availability and scalability, with built-in replication and auto-sharding.
      See all alternatives