3

请原谅可能是基本问题。我使用 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);
}

因此,我以一种通用的方式为任何特定类型定义了我的解析器。很想听听其他人对解决方案的看法。

在实现诸如“按名称过滤”之类的东西时,我想这也会非常有用。

4

1 回答 1

3

如果我说对了,那么您正在寻找一种调用外部方法来解决的方法store.products。如果是这种情况,使用@GraphQLContext.

例如,您可以执行以下操作:

//Any class with queries
public class ProductService {

    @GraphQLQuery(name = "products")
    public Page<ProductEntity> getProducts(@GraphQLContext Store store, @GraphQLArgument(name = "count", defaultValue = "10") int count, @GraphQLArgument(name = "offset") int offset) {
        //your logic here, maybe delegating to the existing getProducts method
    }
}

如果Store已经有getProducts,您可能想要@GraphQLIgnore它,但不是强制性的。

如果您询问如何将相同的参数传递给productsinside ,请在此处store.products查看我的答案。您可以使用注入,如果需要,您可以从那里获取。ResolutionEnvironment@GraphQLEnvironment ResolutionEnvironmentDataFetchingEnvironment

于 2019-04-11T10:08:29.897 回答