...

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

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

     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