Introduction to Type System and Language
Learn about the GraphQL type system and language.
We'll cover the following...
Type system
We know from the previous lessons that GraphQL selects fields on objects and decides what operation to request. Let’s try breaking down the following GraphQL query:
{
pizzas {
id
name
}
}
-
We ...