1directive @foo on OBJECT | UNION | ENUM 2interface Named { 3 name: String! 4} 5type Person implements Named @foo { 6 name: String! 7} 8enum ConnectionStatus @foo { 9 ONLINE 10 OFFLINE 11 ERROR 12} 13union PersonUnion @foo = Person
View as plain text