我正在使用从graphql-spqr-spring-boot库公开的@GraphQLInterface。
用例是获取接口并输入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
}`
以上代码中我缺少什么?