Nest JS with Graphql APIs development

Nest JS with Garphql
In this playlist, we are going to cover a lot of things related to nestjs and graphql
Github Link
- https://github.com/tkssharma/nodejs-graphql-world/tree/master/Graphql%20using%20Apollo
Playlist
https://www.youtube.com/playlist?list=PLT5Jhb7lgSBPgWsiBZwNPBtjgPpAycAN3

- nestjs graphql with mongoose
- nestjs graphql with postgres
- nestjs graphql with typeorm
- nestjs graphql with different ORM and ODM
- NESTJS GRAPHQL Blog App
- NESTJS GRAPHQL AUTHENTICATION AND AUTHORIZATION


GraphQL is a powerful query language for APIs and a runtime for fulfilling those queries with your existing data. It's an elegant approach that solves many problems typically found with REST APIs. For background, we suggest reading this comparison between GraphQL and REST. GraphQL combined with TypeScript helps you develop better type safety with your GraphQL queries, giving you end-to-end typing.

In this chapter, we assume a basic understanding of GraphQL, and focus on how to work with the built-in @nestjs/graphql module. The GraphQLModule can be configured to use Apollo server (with the @nestjs/apollo driver) and Mercurius (with the @nestjs/mercurius)

Comments