Skip to content

Commit

Permalink
Fix ID scalar having wrong default converter
Browse files Browse the repository at this point in the history
  • Loading branch information
pekkah committed Dec 17, 2019
1 parent 50baf32 commit f71bace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphql/TypeSystem/ScalarType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ScalarType : INamedType, IEquatable<ScalarType>, IEquatable<INamedT
(Int, new IntConverter()),
(Float, new DoubleConverter()),
(Boolean, new BooleanConverter()),
(ID, new StringConverter())
(ID, new IdConverter())
};


Expand Down

0 comments on commit f71bace

Please sign in to comment.