### Description Initially reported by @sebj on [slack](https://kotlinlang.slack.com/archives/C01A6KM1SBZ/p1754486604889869) Using a builtin mapping with the default inline classes generation breaks data builders: ```graphql extend scalar DateTime @mapTo(builtIn: String) ``` Generated code: ```kotlin public var createdAt: DateTime by BuilderProperty(StringAdapter) ``` `BuilderProperty(StringAdapter)` is a delegate for `String` but not for the inline class wrapper. We'd need to take this into consideration.