github.com/99designs/gqlgen@v0.17.45/plugin/modelgen/testdata/schema_omit_resolver_fields.graphql (about)

     1  directive @goTag(
     2      key: String!
     3      value: String
     4  ) on INPUT_FIELD_DEFINITION | FIELD_DEFINITION
     5  
     6  directive @goField(
     7  	forceResolver: Boolean
     8  	name: String
     9      omittable: Boolean
    10  ) on INPUT_FIELD_DEFINITION | FIELD_DEFINITION | INTERFACE
    11  
    12  type Base {
    13      StandardField: String!
    14      ResolverField: String! @goField(forceResolver: true)
    15  }