@Bean
@Qualifier("OrderItemType")
public GraphQLObjectType getOrderItemType() {
return newObject()
.name("OrderItemDto")
.field(newFieldDefinition()
.name("productId")
.type(GraphQLString))
.field(newFieldDefinition()
.name("quantity")
.type(GraphQLInt))
.field(newFieldDefinition()
.name("product")
.type(getProductType())
.dataFetcher(new OrderItemProductFetcher(productAdaptor)))
.build();
}
ManualGraphQLQuerySchema.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:research-graphql
作者:
评论列表
文章目录