codegen/testserver/followschema/enum.graphql (
10
lines of code) (
raw
):
enum EnumTest { OK NG } input InputWithEnumValue { enum: EnumTest! } extend type Query { enumInInput(input: InputWithEnumValue): EnumTest! }