GraphQL

GraphQL is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data.[2] GraphQL was developed internally by Facebook in 2012 before being publicly released in 2015.[3] On 7 November 2018, the GraphQL project was moved from Facebook to the newly-established GraphQL Foundation, hosted by the non-profit Linux Foundation.[4][5] Since 2012, GraphQL's rise has followed the adoption timeline as set out by Lee Byron, GraphQL's creator, with accuracy.[6] Byron's goal is to make GraphQL omnipresent across web platforms.

GraphQL
Developer(s)Facebook, and community
Initial releaseSeptember 14, 2015 (2015-09-14)
Stable release
June 2018 (2018-06)[1]
Repositorygithub.com/graphql/graphql-spec
Written inImplementations in Java, JavaScript, Ruby, Scala, others.
Operating systemCross-platform
Websitegraphql.org

It 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, therefore preventing excessively large amounts of data from being returned, but this has implications for how effective web caching of query results can be. The flexibility and richness of the query language also adds complexity that may not be worthwhile for simple APIs.[7][8][9] It consists of a type system, query language and execution semantics, static validation, and type introspection.

GraphQL supports reading, writing (mutating), and subscribing to changes to data (realtime updates – most commonly implemented using WebHooks).[10] GraphQL servers are available for multiple languages, including Haskell,[11] JavaScript,[12] Perl,[13] Python,[14] Ruby, Java, C++,[15] C#, Scala, Go, Rust, Elixir,[16] Erlang, PHP, R, and Clojure.

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

Example

POST request:

{
    orders {
        id
        productsList {
            product {
                name
                price
            }
            quantity
        }
        totalAmount
    }
}

Answer:

{
    "data": {
        "orders": [
            {
                "id": 1,
                "productsList": [
                    {
                        "product": {
                            "name": "orange",
                            "price": 1.5
                        },
                        "quantity": 100
                    }
                ],
                "totalAmount": 150
            }
        ]
    }
}

See also

References

  1. "GraphQL June 2018 Release Notes". Retrieved 26 March 2019.
  2. "GraphQL: A query language for APIs".
  3. "GraphQL: A data query language".
  4. "Facebook's GraphQL gets its own open-source foundation". TechCrunch. Retrieved 7 November 2018.
  5. "The Linux Foundation Announces Intent to Form New Foundation to Support GraphQL - The Linux Foundation". The Linux Foundation. 6 November 2018. Retrieved 7 November 2018.
  6. Anthony, Art. "Is GraphQL Moving Toward Ubiquity?". NordicAPIs.
  7. "GraphQL vs REST: Overview". Phil Sturgeon. Retrieved 25 November 2018.
  8. "Why use GraphQL, good and bad reasons". Honest Engineering. 4 August 2018. Retrieved 26 November 2018.
  9. "GraphQL Fundamentals". Howto GraphQL. Retrieved 4 July 2018.
  10. "GraphQL". facebook.github.io. Facebook. Archived from the original on 18 July 2018. Retrieved 4 July 2018.
  11. "Hasura – Instant Realtime GraphQL on Postgres". Hasura. Retrieved 24 October 2019.
  12. "GraphQL js".
  13. "GraphQL - Perl implementation of GraphQL".
  14. "Graphene". graphene-python.org. Retrieved 18 June 2017.
  15. graphql/libgraphqlparser, GraphQL, 27 May 2020, retrieved 30 May 2020
  16. "Absinthe: The GraphQL toolkit for Elixir". Retrieved 19 July 2018.
  17. "GraphQL SDL included in Github repository".


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.