在arangodb中的数组内过滤不起作用

Filter within array in arangodb not working

我正尝试在 this page. The dataset is here

上解决问题 20

Q20.Write MongoDB 查询以查找得分不超过 10 的餐厅的 ID、名称、行政区和美食。

我正在按照以下方式尝试,但我可以看到我得到的餐厅结果得分为 [2,6,10,9,14] 和 [8,23,12,12]。所以我知道这不可能是对的。

for r in restaraunts    
    for g in r.grades
        filter g.score <=10
        return distinct {ID:r.restaurant_id,name:r.name,borough:r.borough,cuisine:r.cuisine,score:r.grades[*].score}
    

请帮忙,我尝试了不同的分数预测,但我觉得我忽略了一些东西。如果我使用 collect 还是会出错

    collect rest=r.restaurant_id,name= r.name, bor=r.borough,cuis=r.cuisine, sc=r.grades[*].score into groups
    for g in sc
    filter g<=10
    return {rest:rest,name:name,bor:bor,cuis:cuis,sc:g}

使用MAX()函数确定要过滤的值:

for r in restaurants    
    LET score = MAX(r.grades[*].score)
    filter score <=10
    return distinct {ID:r.restaurant_id,name:r.name,borough:r.borough,cuisine:r.cuisine,score:score}

我没有针对您的数据集进行测试,但使用了这个小片段:

LET r = {'grades': [ {score: 5}, {score: 7}, {score: 15} ] }
RETURN MAX(r.grades[*].score)