github.com/codykaup/genqlient@v0.6.2/generate/testdata/errors/InvalidSchemaWithBuiltins.schema.graphql (about)

     1  type Query {
     2    f: String
     3    g: Bogus
     4  }
     5  
     6  scalar Int
     7  scalar Float
     8  scalar String
     9  scalar Boolean
    10  scalar ID
    11  
    12  directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
    13  directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
    14  directive @deprecated(reason: String = "No longer supported") on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | ENUM_VALUE
    15  directive @specifiedBy(url: String!) on SCALAR
    16  
    17  type __Schema {
    18    description: String
    19    types: [__Type!]!
    20    queryType: __Type!
    21    mutationType: __Type
    22    subscriptionType: __Type
    23    directives: [__Directive!]!
    24  }
    25  
    26  type __Type {
    27    kind: __TypeKind!
    28    name: String
    29    description: String
    30    fields(includeDeprecated: Boolean = false): [__Field!]
    31    interfaces: [__Type!]
    32    possibleTypes: [__Type!]
    33    enumValues(includeDeprecated: Boolean = false): [__EnumValue!]
    34    inputFields: [__InputValue!]
    35    ofType: __Type
    36    specifiedByURL: String
    37  }
    38  
    39  type __Field {
    40    name: String!
    41    description: String
    42    args: [__InputValue!]!
    43    type: __Type!
    44    isDeprecated: Boolean!
    45    deprecationReason: String
    46  }
    47  
    48  type __InputValue {
    49    name: String!
    50    description: String
    51    type: __Type!
    52    defaultValue: String
    53  }
    54  
    55  type __EnumValue {
    56    name: String!
    57    description: String
    58    isDeprecated: Boolean!
    59    deprecationReason: String
    60  }
    61  
    62  enum __TypeKind {
    63    SCALAR
    64    OBJECT
    65    INTERFACE
    66    UNION
    67    ENUM
    68    INPUT_OBJECT
    69    LIST
    70    NON_NULL
    71  }
    72  
    73  type __Directive {
    74    name: String!
    75    description: String
    76    locations: [__DirectiveLocation!]!
    77    args: [__InputValue!]!
    78    isRepeatable: Boolean!
    79  }
    80  
    81  enum __DirectiveLocation {
    82    QUERY
    83    MUTATION
    84    SUBSCRIPTION
    85    FIELD
    86    FRAGMENT_DEFINITION
    87    FRAGMENT_SPREAD
    88    INLINE_FRAGMENT
    89    VARIABLE_DEFINITION
    90    SCHEMA
    91    SCALAR
    92    OBJECT
    93    FIELD_DEFINITION
    94    ARGUMENT_DEFINITION
    95    INTERFACE
    96    UNION
    97    ENUM
    98    ENUM_VALUE
    99    INPUT_OBJECT
   100    INPUT_FIELD_DEFINITION
   101  }