我正在尝试为我们的产品团队找到一种查询语言,以便他们可以根据集合的复杂查询创建“危险信号”。由于他们不熟悉代码,我尝试查看 JsonIQ 解决方案,但它似乎没有维护,并且找不到 MongoDB 的简单解决方案。
所以他们是一个简单的选择?mongo“阶段”查询可以完成类似以下示例的操作(如果可以,如何?)
itemCount = number of total contributionItems
if itemCount>5
foreach item
if (number of items with the same party)/itemCount>0.8
save that party as party1
PH1=party1
for each contributionItem if (contributionItem.party != party1)
add item to array.
PH2=array[item.party]