We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 461835a commit ef24fa3Copy full SHA for ef24fa3
graphql/graphql.go
@@ -64,6 +64,8 @@ func (b *Long) UnmarshalGraphQL(input interface{}) error {
64
*b = Long(input)
65
case int64:
66
67
+ case float64:
68
+ *b = Long(input)
69
default:
70
err = fmt.Errorf("unexpected type %T for Long", input)
71
}
0 commit comments