github.com/99designs/gqlgen@v0.17.45/codegen/testserver/singlefile/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 }