github.com/spread-ai/gqlgen@v0.0.0-20221124102857-a6c8ef538a1d/plugin/federation/testdata/schema/customquerytype.graphql (about)

     1  schema {
     2      query: CustomQuery
     3  }
     4  
     5  type Hello {
     6    name: String!
     7  }
     8  
     9  type CustomQuery {
    10    hello: Hello!
    11  }
    12