Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Chapter 3 - The GraphQL Language

In this chapter, we'll start writing GraphQL queries using the GraphQL query language. The query string syntax is consistent for all GraphQL APIs, regardless of what language the service is written in. Throughout this chapter, we'll explore the ins-and-outs of the query language and how a GraphQL operation is parsed by a GraphQL server.

Resource Links

Query Language Tools

  • GraphiQL: An in-browser IDE for exploring GraphQL APIs.
  • GraphQL Playground: A GraphQL IDE for writing queries in the GraphQL Query Language.
  • GraphQL Bin: An online version of GraphQL Playground. Simply enter a GraphQL endpoint, and all of the schema documentation will be present in the schema tab.
  • GraphQL Bin - SWAPI: This link takes you to a SWAPI example in GraphQL Bin.
  • Apollo Launchpad: Apollo's GraphQL Server demo platform

Chapter Examples