Skip to content

Commit

Permalink
Fix flow errors
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Feb 14, 2018
1 parent a8b9539 commit 6f1867c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/extendSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export function extendSchema(
}

// To be called at most once per type. Only getExtendedType should call this.
function extendType<T: GraphQLNamedType>(type: T): T {
function extendType(type) {
if (isIntrospectionType(type)) {
// Introspection types are not extended.
return type;
Expand Down

0 comments on commit 6f1867c

Please sign in to comment.