apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
type Query {
    name: String
    example(arg: First): Int
}

input First {
  second: Second!
  value: String
}

input Second {
  third: Third!
  value: String
}

input Third {
  fourth: Fourth!
  value: String
}

input Fourth {
  first: First!
}