ManualGraphQLQuerySchema.java 文件源码

java
阅读 23 收藏 0 点赞 0 评论 0

项目:research-graphql 作者:
@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();
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号