请原谅可能是基本问题。我使用 GraphQL SPQR 来实现产品 DTO 的获取,如下所示:
@GraphQLQuery(name = "products")
public Page<ProductEntity> getProducts(@GraphQLArgument(name = "count", defaultValue = "10") int count, @GraphQLArgument(name = "offset") int offset) {
Pageable queryPage = PageRequest.of(offset, count);
return productRepository.findAll(queryPage);
}
请注意,我正在使用此查询对我的数据存储库进行分页。
我的 DTO 的设置方式可以如下查询:
products(count: 10, offset: 0) {
store {
products /* attempting to query using the count and offset parameters here is invalid*/ {
productName
}
}
}
在第二种类型(商店)下,我再次获取产品列表。我如何告诉 GraphQL 以与获取第一个产品列表相同的方式获取第二个嵌套的产品列表?
我正在想象将 绑定GraphQLQuery
到我的ProductEntityDAO
类或类似的东西的能力,以便针对该类型的提取都可以以相同的方式解决。
感谢您的帮助。
编辑:
谢谢卡卡。该解决方案运行良好,我需要为“拥有产品的实体”的一般情况解决这个问题。
为此,我在我的产品实体上定义了一个接口,如下所示:
@GraphQLInterface(name = "hasProducts", implementationAutoDiscovery = true)
public interface ProductEdge {
Collection<ProductEntity> getProducts();
}
然后,我通过在需要执行此操作的实体上实现此接口,使与产品列表有连接的实体以通用方式获取它:
public class CommercialPartnerEntity implements ProductEntity.ProductEdge
在我的存储库中:
@Query("select child from CommercialPartnerEntity p inner join p.products child where p = :parent")
@GraphQLQuery(name = "relatedProducts")
Page<ProductEntity> findBy(@Param("parent") ProductEntity.ProductEdge parent, Pageable pageable);
允许我在我的服务中做这样的事情:
@GraphQLQuery(name = "productsList")
public Page<ProductEntity> getProducts(@GraphQLContext ProductEntity.ProductEdge hasProductsEntity, @GraphQLArgument(name = "count", defaultValue = "10") int count, @GraphQLArgument(name = "offset") int offset) {
Pageable queryPage = PageRequest.of(offset, count);
return productRepository.findBy(hasProductsEntity, queryPage);
}
因此,我以一种通用的方式为任何特定类型定义了我的解析器。很想听听其他人对解决方案的看法。
在实现诸如“按名称过滤”之类的东西时,我想这也会非常有用。