Expand @deprecated to Objects by fotoetienne · Pull Request #997 · graphql/graphql-specProblem
Take as a motivating example:
type Query {
animals: [Animal]
}
interface Animal {
name: String
}
type Dog implements Animal {
name: String
}
type Baiji implements Animal {
name: ...