Basics of GraphQL

Learn about the basic concepts of GraphQL.

We'll cover the following...

At its core, GraphQL relies heavily on two simple keywords: query and mutation. We’ll explore these concepts in detail in this lesson.

Note: You can use the code widget at the end of this lesson to run the queries and mutations.

Queries in GraphQL

As its name suggests, a query is what the client prepares to request data from the ...