About 4,130 results
Open links in new tab
  1. GraphQL | A query language for your API

    GraphQL seamlessly follows relationships between data, eliminating multiple API calls. While typical REST APIs require loading from multiple URLs, GraphQL APIs get all the data your …

  2. Learn - GraphQL

    Find answers to the most common questions about GraphQL — from getting started to advanced use cases. This also covers frontend concerns and info about the official specification.

  3. Getting Started - GraphQL

    GraphQL is a specification typically used for remote client-server communications. Unlike SQL, GraphQL is agnostic to the data source (s) used to retrieve data and persist changes.

  4. Introduction to GraphQL

    GraphQL isn’t tied to any specific database or storage engine—it is backed by your existing code and data. If you’re already familiar with GraphQL and would like to read documentation on how …

  5. Schemas and Types | GraphQL

    GraphQL allows you to add documentation to the types, fields, and arguments in a schema. In fact, the GraphQL specification encourages you to do this in all cases unless the name of the …

  6. Tools and Libraries - GraphQL

    GraphQL Mesh allows you to use GraphQL query language to access data in remote APIs that don't run GraphQL (and also ones that do run GraphQL). It can be used as a gateway to other …

  7. FAQ - GraphQL

    If you’re integrating GraphQL into your microservice architecture, we’d recommend having one GraphQL schema as an API gateway rather than having your client talk to multiple GraphQL …

  8. Response - GraphQL

    Sometimes, a GraphQL request may be syntactically correct, but when the server parses and validates the document against the schema, it finds an issue with part of the operation and …

  9. Schema Design - GraphQL

    While there’s nothing that prevents a GraphQL service from being versioned just like any other API, GraphQL takes a strong opinion on avoiding versioning by providing the tools for the …

  10. Common HTTP Errors and How to Debug Them | GraphQL

    When building or consuming a GraphQL API over HTTP, it’s common to run into errors, especially during development. Understanding how to recognize and resolve these issues can save you …