Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Kearl committed Jun 12, 2019
1 parent 1913d0d commit d1e2162
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function printObject(type: GraphQLObjectType): string {
return (
printDescription(type) +
`${isExtension ? 'extend ' : ''}type ${
type.name
type.name
}${implementedInterfaces}${printFederationDirectives(type)}` +
printFields(type)
);
Expand All @@ -204,7 +204,7 @@ function printInterface(type: GraphQLInterfaceType): string {
return (
printDescription(type) +
`${isExtension ? 'extend ' : ''}interface ${
type.name
type.name
}${printFederationDirectives(type)}` +
printFields(type)
);
Expand Down

0 comments on commit d1e2162

Please sign in to comment.