Skip to content

Commit

Permalink
fix(graphql): Fix assemblers type for module passthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Stanfield authored and doug-martin committed Sep 28, 2020
1 parent e9af5d3 commit 713c41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/query-graphql/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface NestjsQueryGraphqlModuleOpts {
imports: Array<Class<any> | DynamicModule | Promise<DynamicModule> | ForwardReference>;
services?: Provider[];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
assemblers?: Class<Assembler<any, any>>[];
assemblers?: Class<Assembler<any, any, any, any, any, any>>[];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
resolvers: AutoResolverOpts<any, any, unknown, unknown, ReadResolverOpts<any>, PagingStrategies>[];
pubSub?: Provider<GraphQLPubSub>;
Expand Down

0 comments on commit 713c41c

Please sign in to comment.