diff --git a/packages/apollo/tests/code-first-multigraph/main.ts b/packages/apollo/tests/code-first-multigraph/main.ts index 79a50808a..c73dd67a5 100644 --- a/packages/apollo/tests/code-first-multigraph/main.ts +++ b/packages/apollo/tests/code-first-multigraph/main.ts @@ -3,6 +3,11 @@ import { NestFactory } from '@nestjs/core'; import { ApplicationModule } from './app.module'; import { GatewayModule } from './gateway.module'; +/** + * This use case comes from the need for an application + * to be designed in a way which would allow future context + * separation from a deployment point of view. + */ export async function bootstrap() { const app = await NestFactory.create(ApplicationModule); app.useGlobalPipes(new ValidationPipe());