createHandler

fun createHandler(kType: KType, execution: FieldHandlerExecution<*>, typeDetection: TypeDetection): FieldHandler
inline fun <T : Any> createHandler(execution: FieldHandlerExecution<*>, typeDetection: TypeDetection): FieldHandler


fun createHandler(kClass: KClass<*>, execution: FieldHandlerExecution<*>, typeDetection: TypeDetection): FieldHandler

Deprecated

Please use KType API

Replace with

createHandler(kClass.starProjectedType, execution, typeDetection)