github.com/mstephano/gqlgen-schemagen@v0.0.0-20230113041936-dd2cd4ea46aa/codegen/testserver/followschema/fields_order.graphql (about)

     1  type FieldsOrderPayload {
     2      firstFieldValue: String
     3  }
     4  
     5  input FieldsOrderInput {
     6      firstField: String
     7      overrideFirstField: String
     8  }
     9  
    10  extend type Mutation {
    11      overrideValueViaInput(input: FieldsOrderInput!): FieldsOrderPayload!
    12  }