Skip to content

Commit 3705256

Browse files
authored
fix(nestjs-types): Remove unused graphqlEndpoint driver option (#4182)
1 parent b18d8fb commit 3705256

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/clear-melons-take.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphql-yoga/nestjs': minor
3+
---
4+
5+
Remove unused graphqlEndpoint NestJS driver option

packages/nestjs/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export type YogaDriverServerContext<Platform extends YogaDriverPlatform> =
3434

3535
export type YogaDriverServerOptions<Platform extends YogaDriverPlatform> = Omit<
3636
YogaServerOptions<YogaDriverServerContext<Platform>, never>,
37-
'context' | 'schema'
37+
'context' | 'schema' | 'graphqlEndpoint'
3838
> & {
3939
conditionalSchema?: YogaSchemaDefinition<YogaDriverServerContext<Platform>, never> | undefined;
4040
};

0 commit comments

Comments
 (0)