apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
mutation adoptAPetMutation {
  undefinedMutationField
}

type Query {
  name: String,
  age: Int
}

type Mutation {
  addPet (name: String!, petType: PetType): Result!
}

type Result {
  id: String
}

enum PetType {
  CAT
  DOG
}