The Generated Book Type
Learn about the Book type generated using GraphQL Code Generator.
We'll cover the following...
Let’s start by breaking down the generated.tsx file and looking at each type.
The generated Book type and the old Book type
The first type in this file that we’ll look at is the new generated Book type.
export type Book = {__typename?: 'Book';id: Scalars['ID'];title: Scalars['String'];};
Book type generated using GraphQL Code Generator
This type looks a lot like the old Book ...
Ask