github.com/luciferinlove/gqlgen@v0.17.16-bzc.1/codegen/testserver/followschema/enum.graphql (about)

     1  enum EnumTest {
     2      OK
     3      NG
     4  }
     5  
     6  input InputWithEnumValue {
     7      enum: EnumTest!
     8  }
     9  
    10  extend type Query {
    11      enumInInput(input: InputWithEnumValue): EnumTest!
    12  }