how do I do this in Kotlin gradle build file? ```a...
# gradle
p
how do I do this in Kotlin gradle build file?
Copy code
apollo {
  customTypeMapping = [
    "type" : "customType"
  ]
}
e
Copy code
apollo {
    customTypeMapping.set(
        mapOf(
            "type" to "customType"
        )
    )
}
p
thanks!