GraphQL Query Language

From GM-RKB
(Redirected from GraphQL)
Jump to navigation Jump to search

A GraphQL Query Language is a query language for APIs.



References

2023

  • chat.openai.com
    • Q: what is GraphQL?
    • A: GraphQL is a query language for your API. It allows the client to request specific data from the server, and the server to return only the data that the client has requested. This makes it a flexible alternative to REST APIs, which typically expose a fixed set of endpoints for each resource. With GraphQL, the client has more control over the data it receives, and can request exactly what it needs, rather than receiving a fixed set of data from an endpoint. GraphQL was developed and open-sourced by Facebook, and is now used by many companies as a way to build APIs.

2023

  • https://graphql.org/learn/
    • QUOTE: GraphQL is a query language for your API, and a server-side runtime for executing queries using a type system you define for your data. GraphQL isn't tied to any specific database or storage engine and is instead backed by your existing code and data.

      A GraphQL service is created by defining types and fields on those types, then providing functions for each field on each type. ...

2023

  • (Wikipedia, 2023) ⇒ https://en.wikipedia.org/wiki/GraphQL Retrieved:2023-1-4.
    • GraphQL is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data.[1] GraphQL was developed internally by Facebook (now Meta) in 2012 before being publicly released in 2015. On 7 November 2018, the GraphQL project was moved from Facebook to the newly established GraphQL Foundation, hosted by the non-profit Linux Foundation. Since 2012, GraphQL's rise has closely followed the adoption timeline as set out by Lee Byron, GraphQL's creator. Byron's goal is to make GraphQL omnipresent across web platforms. GraphQL provides an approach to developing web APIs and has been compared and contrasted with REST and other web service architectures. It allows clients to define the structure of the data required, and the same structure of the data is returned from the server. This prevents excessively large amounts of data from being returned, but can impede web caching of query results. The flexibility and richness of the query language also adds complexity that may not be worthwhile for simple APIs. Despite the name, GraphQL does not provide the richness of graph operations that one might find in a full-fledged graph query language such as SPARQL, or even in dialects of SQL that support transitive closure. For example, a GraphQL interface that reports the parents of an individual cannot return, in a single query, the set of all their ancestors. GraphQL consists of a type system, query language and execution semantics, static validation, and type introspection. It supports reading, writing (mutating), and subscribing to changes to data (realtime updates – most commonly implemented using Websockets). GraphQL servers are available for multiple languages. The result of a single query is returned in JSON format.

      On 9 February 2018, the GraphQL Schema Definition Language (SDL) became part of the specification.

2016