How GraphQL Schema Works
Learn how to effectively structure a GraphQL schema and create an API that developers will love to use.
We'll cover the following...
Introduction
Now that you understand the basic pieces that make up a GraphQL schema, it is time to learn how to assemble them into something meaningful.
A good API design is not reliant on using a specific technology. Rather, it is reliant on how you want your end-user to interact with your service.
With that said, GraphQL does make it easier, in some respects, to create an intuitive and performant API.
What to aim for
A good API is one that makes it clear what you are doing and how you will do it. That is to say, that at any point in its use, you should be certain what the result will be and how to arrive at that point.
You do not want to create an API that frustrates your users with side effects or leaves the uncertainty on how they are meant to retrieve or manipulate data.
For the most ...