Since https://github.com/graph-gophers/graphql-go/commit/498fe3961c3058c45f5ad90b1212a48adfbba266 we can add `@deprecated` to types like so: ```graphql type User { name: String! age: int @deprecated(reason: "Use `dob` instead") dob: Date! } ``` However the `@deprecated` directive throws an error on `input`: ```graphql input UserInput { name: String! age: int! = 0 @deprecated(reason: "Use `dob` instead") dob: Date! } ``` ``` panic: graphql: syntax error: unexpected "@", expecting Ident ```