使用graphql-spqr-spring-boot并无法在graphql模式中获取GraphQLInterface生成接口

时间:2020-05-01 18:34:19

标签: spring-boot graphql graphql-spqr graphql-spqr-spring-boot-starter

我正在使用从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
}`

以上代码中我缺少什么?

0 个答案:

没有答案