github.com/luciferinlove/gqlgen@v0.17.16-bzc.1/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  }