Skip to content

Commit

Permalink
Fix bug in _FieldSet.type where we copied description from GraphQLString
Browse files Browse the repository at this point in the history
  • Loading branch information
sachindshinde committed Mar 24, 2020
1 parent b49741f commit 20b2d3e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public final class _FieldSet {

public static GraphQLScalarType type = GraphQLScalarType.newScalar(Scalars.GraphQLString)
.name(typeName)
.description(null)
.coercing(Scalars.GraphQLString.getCoercing())
.build();

Expand Down

0 comments on commit 20b2d3e

Please sign in to comment.