This course has been archived and is no longer supported. For our latest courses on web development, consider trying our evergreen curriculums with a 1-Year Unlimited Access Package.
GraphQL is a query language for APIs – it lets the client specify the exact data it needs, enables it to aggregate data from a number of sources, and uses a type system to describe the data. It also acts as a runtime for fulfilling the client’s queries with your existing data, allows you to evolve APIs over time, and enables powerful developer tools.
In this course, you will be introduced to the basics of GraphQL and how to implement it, including how to:
- Model your data using GraphQL syntax and Prisma
- Write mutations and queries in our Prisma Playground
- Create a GraphQL server using GraphQL Yoga and Prisma Binding
- Register mutations and queries in our resolvers for our GraphQL servers