我的 Strapi 设置中有 2 种收藏类型:product
产品review
有很多评论。
我想在/products
and的响应中添加 2 个新字段/products/:id
:
averageRaing: number
totalReviews: number
我想覆盖默认find
服务来实现这一点,但我无法找到strapi.query("product").find(params, populate)
覆盖它的源代码。
如果可能,我需要在单个查询中完成此操作,而不是进行多个查询。
到目前为止,我有:
find(params, populate) {
return strapi.query("product").model.query(db => {
// I want the same query as when I run `strapi.query("product").find(params, populate)`
});
},
但我不确定如何以完全相同的方式处理params
and 。populate
.find(params, populate)