...

Text file src/github.com/99designs/gqlgen/codegen/testserver/followschema/enum.graphql

Documentation: github.com/99designs/gqlgen/codegen/testserver/followschema

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

View as plain text