### Version 5.0.0-alpha.2+ ### Summary Given schema: ```graphql type SomeObject { """ id for the badge associated with the reviewer """ reviewer_badge_id: Int @deprecated(reason: "") } ``` the outputted field is missing the `message` on the annotation. This works in 4.x. ```kotlin @Deprecated val reviewer_badge_id: Int? ``` Kotlin requires a message on the annotation.