Skip to content

Commit 8cb4d58

Browse files
authored
Merge pull request #32 from Linq2GraphQL/fix-float-to-double
Fiexed Float to double
2 parents c4d0fed + f77eff4 commit 8cb4d58

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Linq2GraphQL.Generator/GraphQLSchema/Helpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public static class Helpers
66
new(StringComparer.InvariantCultureIgnoreCase)
77
{
88
{ "Int", new ValueTuple<string, Type>("int", typeof(int)) },
9-
{ "Float", new ValueTuple<string, Type>("float", typeof(float)) },
9+
{ "Float", new ValueTuple<string, Type>("double", typeof(double)) },
1010
{ "String", new ValueTuple<string, Type>("string", typeof(string)) },
1111
{ "ID", new ValueTuple<string, Type>("string", typeof(string)) },
1212
{ "Date", new ValueTuple<string, Type>("DateTime", typeof(DateTime)) },

test/Linq2GraphQL.Console/Linq2GraphQL.Console.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
</PropertyGroup>
99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Identity.Client" Version="4.54.1" />
1110
<PackageReference Include="Websocket.Client" Version="4.6.1" />
1211
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="6.0.0" />
1312
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />

0 commit comments

Comments
 (0)