You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if I use graphql-kotlin 8.0.0-alpha.3 together with kotlin 2.0.0, then our custom SchemaGeneratorHooks is ignored. graphl-java is set to 22.1. We ignore few properties, hence we created a CustomSchemaGeneratorHooks and implemented the method isValidProperty which is returns false for the specific property. Up to kotlin 1.9.x. everything works well. I saw that you are upgrading to Kotlin version 1.9.x in the new graphql-kotlin 8.x.
what is your plan to support kotlin 2.0? what is your recommendation when dealing with kotlin 2.0.0?
thanks.
class CustomSchemaGeneratorHooks : SchemaGeneratorHooks {
..
override fun isValidProperty(kClass: KClass<*>, property: KProperty<*>): Boolean {
...
}
..
}
hi.
if I use graphql-kotlin 8.0.0-alpha.3 together with kotlin 2.0.0, then our custom
SchemaGeneratorHooks
is ignored.graphl-java
is set to22.1
. We ignore few properties, hence we created aCustomSchemaGeneratorHooks
and implemented the methodisValidProperty
which is returnsfalse
for the specific property. Up to kotlin1.9.x.
everything works well. I saw that you are upgrading to Kotlin version1.9.x
in the newgraphql-kotlin 8.x
.what is your plan to support kotlin 2.0? what is your recommendation when dealing with kotlin 2.0.0?
thanks.
Config
at the creation / app startup I printed out the schema
The text was updated successfully, but these errors were encountered: