Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/nestjs/graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jun 23, 2020
2 parents f5dd302 + e0ccf86 commit 685bef3
Show file tree
Hide file tree
Showing 3 changed files with 1,405 additions and 809 deletions.
2 changes: 1 addition & 1 deletion lib/schema-builder/errors/undefined-resolver-type.error.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class UndefinedResolverTypeError extends Error {
constructor(name: string) {
super(
`Undefined ressolver type error. Make sure you are providing an explicit object type for the "${name}" (e.g., "@Resolver(() => Cat)").`,
`Undefined resolver type error. Make sure you are providing an explicit object type for the "${name}" (e.g., "@Resolver(() => Cat)").`,
);
}
}

0 comments on commit 685bef3

Please sign in to comment.