remove apollo studio
This commit is contained in:
@@ -28,7 +28,6 @@
|
||||
"@nestjs/core": "^9.0.0",
|
||||
"@nestjs/graphql": "^10.0.21",
|
||||
"@nestjs/platform-express": "^9.0.0",
|
||||
"apollo-server-core": "^3.10.1",
|
||||
"apollo-server-express": "^3.10.1",
|
||||
"axios-cache-adapter": "^2.7.3",
|
||||
"camelcase-object-deep": "^1.1.7",
|
||||
|
||||
@@ -3,7 +3,6 @@ import { HttpModule } from '@nestjs/axios';
|
||||
import { Module } from '@nestjs/common';
|
||||
import { ConfigModule } from '@nestjs/config';
|
||||
import { GraphQLModule } from '@nestjs/graphql';
|
||||
import { ApolloServerPluginLandingPageLocalDefault } from 'apollo-server-core';
|
||||
import { join } from 'path';
|
||||
import { ThingResolver } from './thing/thing.resolver';
|
||||
import { httpCacheAdapter } from './utils/httpCacheAdapter';
|
||||
@@ -21,9 +20,8 @@ import { httpCacheAdapter } from './utils/httpCacheAdapter';
|
||||
GraphQLModule.forRoot<ApolloDriverConfig>({
|
||||
driver: ApolloDriver,
|
||||
autoSchemaFile: join(process.cwd(), 'src/schema.gql'),
|
||||
playground: false,
|
||||
playground: true,
|
||||
introspection: true,
|
||||
plugins: [ApolloServerPluginLandingPageLocalDefault()],
|
||||
}),
|
||||
],
|
||||
providers: [ThingResolver],
|
||||
|
||||
Reference in New Issue
Block a user