Я использую @GraphQLInterface, предоставляемый из библиотеки graphql-spqr-spring-boot.
Usecase - получить интерфейс и ввести схему graphql.
`@GraphQLInterface(name="Entity" , implementationAutoDiscovery=true) @Data public abstract class Entity{ String name; }
@GraphQLType(name="Input") @Data public class Input extends Entity{ String typeIn; }`
Когда spqr генерирует схему. Я просто вижу
`type Input{
name: String
typeIn: String
}
My expectation was:
interface Entity{
name: String
}
type Input implements Entity{
typeIn: String
}`
Чего мне не хватает в приведенном выше коде?