apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
  ]
}