Skip to content

Instantly share code, notes, and snippets.

@paramsinghvc
Created August 16, 2022 13:13
Show Gist options
  • Save paramsinghvc/61ac7a8db0e0ba7d038c58170b2dbcda to your computer and use it in GitHub Desktop.
Save paramsinghvc/61ac7a8db0e0ba7d038c58170b2dbcda to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { GraphQLModule } from '@nestjs/graphql';
import { ApolloDriver, ApolloDriverConfig } from '@nestjs/apollo';
@Module({
imports: [
GraphQLModule.forRoot<ApolloDriverConfig>({
driver: ApolloDriver,
debug: false,
playground: false,
}),
],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment