Skip to content

Commit a110307

Browse files
committed
test
1 parent 0d54ff7 commit a110307

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/backend/src/app.module.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ import { UserModule } from './user/user.module';
1717
driver: ApolloDriver,
1818
useFactory: () => ({
1919
autoSchemaFile: join(process.cwd(), 'schema.graphql'),
20-
context: ({ req }) => ({
20+
context: ({ req, res }) => ({
2121
req,
22+
res,
2223
}),
2324
debug: true,
2425
playground: true,
2526
sortSchema: true,
27+
introspection: true,
28+
cache: 'bounded',
2629
}),
2730
}),
2831
ContentModule,

0 commit comments

Comments
 (0)