npm i @nestjs/graphql graphql-yoga graphql @graphql-yoga/nestjs
import { YogaDriver, YogaDriverConfig } from '@graphql-yoga/nestjs'
import { Module } from '@nestjs/common'
import { GraphQLModule } from '@nestjs/graphql'
@Module({
imports: [
GraphQLModule.forRoot<YogaDriverConfig>({
driver: YogaDriver
})
]
})
export class AppModule {}
This is just a HTTP transport driver; meaning, everything else should work as showcased in NestJS documentation.
Separately, we offer a @graphql-yoga/nestjs-federation
driver which
allows building Apollo Federation Gateways and Services. Check it out!
If this is your first time contributing to this project, please do read our Contributor Workflow Guide before you get started off.
Feel free to open issues, pull requests and create discussions. Community support is always welcome!
Help us keep Yoga open and inclusive. Please read and follow our of Conduct as adopted from Contributor Covenant.