We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a1fd5 commit 440c9fcCopy full SHA for 440c9fc
graphql/graphql.go
@@ -65,6 +65,8 @@ func (b *Long) UnmarshalGraphQL(input interface{}) error {
65
*b = Long(input)
66
case int64:
67
68
+ case float64:
69
+ *b = Long(input)
70
default:
71
err = fmt.Errorf("unexpected type %T for Long", input)
72
}
0 commit comments