NestJS
docs.nestjs.com › graphql › quick-start
GraphQL + TypeScript | NestJS - A progressive Node.js ...
Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP ...
13:15
How to build GraphQL API using NestJs framework - YouTube
02:22:44
NestJS, GraphQL & TypeORM Tutorial - YouTube
🚀 GraphQL with NestJS Crash Course – Build Powerful APIs! ...
Building a GraphQL API with NestJS
Build GraphQL Microservices With Nest.js & Apollo Federation 2
Restack
restack.io › p › nestjs-graphql-client-nest
Nestjs GraphQL Client for Nest | Restackio
When working with GraphQL Federation in a NestJS application, you can use the @nestjs/graphql package to create a GraphQL client.
GitHub
github.com › nestjs › graphql
GitHub - nestjs/graphql: GraphQL (TypeScript) module for Nest framework (node.js) 🍷
Starred by 1.5K users
Forked by 427 users
Languages TypeScript 99.7% | JavaScript 0.3%
npm
npmjs.com › package › @nestjs › graphql
nestjs/graphql
May 21, 2026 - Nest - modern, fast, powerful node.js web framework (@graphql). Latest version: 13.4.2, last published: 23 days ago. Start using @nestjs/graphql in your project by running `npm i @nestjs/graphql`. There are 662 other projects in the npm registry using @nestjs/graphql.
» npm install @nestjs/graphql
Published May 21, 2026
Version 13.4.2
Medium
arie-m-prasetyo.medium.com › full-stack-web-dev-with-nest-graphql-and-react-bba662ea30b0
Full stack web dev with Nest, GraphQL, and React | by Arie M. Prasetyo | Medium
November 25, 2023 - First there’s the cool Node.js framework called NestJS. I really like how I can use CLI commands to create useful scaffolding files. I guess CLI command powered frameworks are making a comeback. Then there’s this awesome new ORM for Node and TypeScript on the block: Prisma. After a few runs, I realise how helpful this tool is in helping me manage the database I use in a project. And then there’s GraphQL (with the easy to learn GraphQL client, Apollo).
GitHub
github.com › xprnio › nestjs-graphql-example
GitHub - xprnio/nestjs-graphql-example: A backend example using Nest.js and GraphQL · GitHub
A backend example using Nest.js and GraphQL. Contribute to xprnio/nestjs-graphql-example development by creating an account on GitHub.
Starred by 25 users
Forked by 7 users
Languages TypeScript 94.4% | JavaScript 5.6%
NestJS
docs.nestjs.com › graphql › subscriptions
Documentation | NestJS - A progressive Node.js framework
Nest is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP ...
DEV Community
dev.to › tkssharma › nest-js-with-graphql-world-4a27
Nest JS With Graphql World - DEV Community
March 17, 2022 - We provide official integrations for these proven GraphQL packages to provide a simple way to use GraphQL with Nest. You can also build your own dedicated driver (read more on that here). ... # For Express and Apollo (default) $ npm i @nestjs/graphql @nestjs/apollo graphql apollo-server-express import { Module } from '@nestjs/common'; import { GraphQLModule } from '@nestjs/graphql'; import { ApolloDriver, ApolloDriverConfig } from '@nestjs/apollo'; @Module({ imports: [ GraphQLModule.forRoot<ApolloDriverConfig>({ driver: ApolloDriver, }), ], }) export class AppModule {}
npm
npmjs.com › package › @golevelup › nestjs-graphql-request
@golevelup/nestjs-graphql-request - npm
import { InjectGraphQLClient } ... GraphQLClient) {} } The GraphQL client works best when combined with GraphQL code generation tools for communicating to a GraphQL endpoint....
» npm install @golevelup/nestjs-graphql-request
Published Dec 19, 2025
Version 4.1.1
Author Jesse Carter
Repository https://github.com/golevelup/nestjs
Bitovi
bitovi.com › blog › how-to-create-a-graphql-server-with-nestjs
How to Create a GraphQL Server with NestJS
The following guide will give you a tech stack, and a basic understanding of how to set up a GraphQL backend server using NestJS connected to a Postgres database via Prisma, and run the whole server on Docker.
Published September 9, 2025
GitHub
github.com › notiz-dev › nestjs-prisma-starter
GitHub - notiz-dev/nestjs-prisma-starter: Starter template for NestJS 😻 includes GraphQL with Prisma Client, Passport-JWT authentication, Swagger Api and Docker
Starter template for NestJS 😻 includes GraphQL with Prisma Client, Passport-JWT authentication, Swagger Api and Docker - notiz-dev/nestjs-prisma-starter
Starred by 2.5K users
Forked by 366 users
Languages TypeScript 96.7% | JavaScript 1.8% | Dockerfile 1.3% | Shell 0.2%
Medium
medium.com › @nhanngt › how-to-build-a-graphql-api-with-nestjs-381a7c1cc0fa
How to build a GraphQL API with NestJS | by Nhan Nguyen | Medium
December 10, 2023 - Most of the definitions in a GraphQL schema are object types. Each object type you define should represent a domain object that an application client might need to interact with. For example, our sample API needs to be able to fetch a list of authors and their posts, so we should define the Author type and Post type to support this functionality. Let’s create a User Object Type for our application: import { Field, ID, ObjectType, Int } from '@nestjs/graphql'; @ObjectType({ description: 'users' }) export class User { @Field((type) => ID) id: string; @Field() firstname: string; @Field() lastname: string; @Field(() => Int) age: number; @Field() createdDate: Date; }
NestJS
docs.nestjs.com › graphql › federation
GraphQL + TypeScript - Federation | NestJS - A progressive Node.js framework
The graph should be simple for clients to consume. Together, federated services can form a complete, product-focused graph that accurately reflects how it’s being consumed on the client. It’s just GraphQL, using only spec-compliant features of the language.
Medium
arnab-k.medium.com › using-graphql-subscriptions-in-nestjs-a147d72cc381
Using GraphQL Subscriptions in NestJS: A Comprehensive Guide | by @rnab | Medium
January 29, 2025 - Unlike queries and mutations, which are request-response based, subscriptions enable servers to send data to clients whenever a specific event occurs. This is based on WebSockets, which provide the full-duplex communication channels over a single TCP connection. Firstly, ensure you have NestJS and the necessary GraphQL packages installed:
Back4App
blog.back4app.com › home › learn › how to build a graphql api with nest.js?
How to Build a GraphQL API with Nest.js?
October 26, 2023 - An object type is a GraphQL schema definition representing the object the client needs to interact with. For instance, if you’re building a blog API, you’ll need to define the blog schema/entity with a TypeScript class and annotate each field with the appropriate decorators. Next, in your entity file, import the Int type and the Field and ObjectType decorators from @nestjs...