...

Text file src/github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchema/default/directive_locations.graphql

Documentation: github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchema/default

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

View as plain text