1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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 }