apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
scalar Scalar

type Object implements Intf {
  field: Int,
}

interface Intf {
  field: Int,
}

input Input {
  field: Enum,
}
enum Enum {
  MEMBER,
}

extend scalar Scalar @specifiedBy(url: "https://apollographql.com")
extend interface Intf {
  field2: Scalar,
}
extend type Object {
  field2: Scalar,
}
extend enum Enum {
  MEMBER_2,
}
extend input Input {
  field2: Int,
}

type Query {
  object: Object,
}