我有一个review
类型的rating
字段,其中包含从1到5的number
。现在,我想计算平均评分。相关架构:
{
name: 'rating',
title: 'Rating',
validation: Rule => Rule.required(),
type: 'number'
},
Sanity最近将arithmetic operations添加到了GROQ中,但是我不确定如何使用它们,并且文档很少。
答案 0 :(得分:1)
我找到了一个解决方案,真的很简单。您分别对每颗星星进行计数,然后将它们相加并除以总数。
"rating":
(
(count(*[_type=='review' && references(^._id) && rating == 1]) * 1) +
(count(*[_type=='review' && references(^._id) && rating == 2]) * 2) +
(count(*[_type=='review' && references(^._id) && rating == 3]) * 3) +
(count(*[_type=='review' && references(^._id) && rating == 4]) * 4) +
(count(*[_type=='review' && references(^._id) && rating == 5]) * 5)
) / count(*[_type=='review' && references(^._id)])
我想这对于Sanity来说计算起来有些昂贵,而且有点冗长,所以我仍然对其他解决方案感兴趣。