Skip to content

Commit

Permalink
refactor(federation): Update optionResolvers type to match master
Browse files Browse the repository at this point in the history
  • Loading branch information
parkerself22 committed May 25, 2020
1 parent 70548f0 commit f5a4f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/federation/graphql-federation.factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class GraphQLFederationFactory {
return schema;
}

private getResolvers(optionResolvers: IResolvers | Array<IResolvers>) {
private getResolvers(optionResolvers: any) {
optionResolvers = Array.isArray(optionResolvers)
? optionResolvers
: [optionResolvers];
Expand Down

0 comments on commit f5a4f9e

Please sign in to comment.