...

Text file src/github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchemaDocument/comments/directive_locations.graphql

Documentation: github.com/vektah/gqlparser/v2/formatter/testdata/baseline/FormatSchemaDocument/comments

     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
    14# end of file comment
    15# end of file comment 2

View as plain text