s/BigInt/Long/

This commit is contained in:
Nick Johnson 2018-10-19 09:14:46 +01:00
parent c104779057
commit 1c5ed0d5f3

View file

@ -278,7 +278,7 @@ func (b *Uint64) UnmarshalGraphQL(input interface{}) error {
case int32:
*b = Uint64(input)
default:
err = fmt.Errorf("Unexpected type for BigInt: %v", input)
err = fmt.Errorf("Unexpected type for Long: %v", input)
}
return err
}