Add content for GraphQL Introduction (#3268)
Adding introduction to topic and useful links.pull/3278/head
parent
faee01b22d
commit
61f088d42a
1 changed files with 11 additions and 1 deletions
@ -1 +1,11 @@ |
||||
# Graphql |
||||
# Graphql |
||||
|
||||
GraphQL is a query language for your API that allows clients to request exactly the data they need, and nothing more. It was developed by Facebook and released as open source in 2015. |
||||
|
||||
One of the main benefits of GraphQL is that it allows the client to request specific fields on demand, rather than having the server determine what data to send in a fixed response format. This allows the client to request only the data it needs, reducing network traffic and improving the efficiency of the API. |
||||
|
||||
If you want to learn more about GraphQL, here are a few links to get you started: |
||||
|
||||
[GraphQL official website](https://graphql.org/) - This is the official website for GraphQL, which provides an overview of the language, as well as documentation and resources for learning more. |
||||
|
||||
[How to GraphQL](https://www.howtographql.com/) - This is a comprehensive tutorial that covers everything you need to know about GraphQL, including the basics of the language, how to set up a GraphQL server, and how to use GraphQL in a client application. |
||||
|
Loading…
Reference in new issue