type Query {
name(arg: WithAllKindsOfFloats): String
}
input WithAllKindsOfFloats {
a_regular_float: Float = 1.2
an_integer_float: Float = 1234
a_float_that_doesnt_fit_an_int: Float = 9876543210
list_of_floats: [Float] = [
4,
9876543210,
98765432109876543210,
]
}