apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
type Query implements Node {
    id: ID!
}

interface Node {
  id: ID!
}

interface Resource implements Node {
  id: ID!
  width: Int
  height: Int
}

interface Image implements Resource & Node {
  id: ID!
  width: Int
  height: Int
  thumbnail: String
}