February 2020
Intermediate to advanced
404 pages
8h 42m
English
A GraphQL schema is composed of many building blocks. These building blocks are as follows:
All these blocks are essential for building a functional GraphQL API. We can divide all of these components into two main categories:
There are many features in each category, but we will only discuss the most important ones that can help you understand GraphQL. Let's take an example of fetching a user record from an API.
A typical GraphQL schema looks like this:
type Query { user: Person}type Person { name: String, address: [Address] ...Read now
Unlock full access