how do I do this in Kotlin gradle build file? ```apollo { customTypeMapping = [ "type" : "cust...
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!