apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
directive @nonRepeatable on ENUM

enum E {
  MEMBER_1
  MEMBER_2
}

extend enum E @nonRepeatable {
  MEMBER_3
  MEMBER_4
}

extend enum E @nonRepeatable {
  MEMBER_2
  MEMBER_4
}

type Query {
  x: Int
}