apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
interface Intf {
  field: String
}

type Object implements Intf & Intf {
  field: String
}

type Extended implements Intf {
  field: String
}

extend type Extended implements Intf

interface SubIntf implements Intf & Intf {
  field: String
}

type Query {
  x: Int
}