Enum values are UPPER in Kotlin and GraphQL Schema...
# graphql-kotlin
r
Enum values are UPPER in Kotlin and GraphQL Schema: I suggest to come up with a different naming for that. You could use a directive: https://expediagroup.github.io/graphql-kotlin/docs/schema-generator/customizing-schemas/directives#customizing-behavior alternative:
Copy code
enum class ApplicantsUpdateColumn(
    @JsonValue
    val graphqlName: String
) {
    ID("id"),
    DATA("data"),
    NAME("name")
}