如何对嵌套字段排序?

qnzebej0  于 2021-06-15  发布在  ElasticSearch
关注(0)|答案(0)|浏览(272)

下面的数据是ElasticSearch索引的搜索查询的输出。我想根据 review.rate 现场。
我该怎么做?
数据

[{
    "name": "ABC",
    "review": [{
        'rate': 1.5,
        'note': "XYZ", 
        'type': "review"
    },
    {
        'rate': 4.5,
        'note': "XYZ",
        'type': "note"
    },
    {
        'rate': 2.0,
        'note': "XYZ",
        'type': "comment"
    }]
},
{
    "name": "PQR",
    "review": [{
        'rate': "",
        'note': "XYZ", 
        'type': "comment"
    },
    {
        'rate': 3.5,
        'note': "XYZ",
        'type': "note"
    },
    {
        'rate': 1.0,
        'note': "XYZ",
        'type': "review"
    }]
},
{
    "name": "STU",
    "review": [{
        'rate': 5.0,
        'note': "XYZ",
        'type': "comment" 
    },
    {
        'rate': 3.5,
        'note': "XYZ",
        'type': "review"
    },
    {
        'rate': 1.5,
        'note': "XYZ",
        'type': "note"
    }]
}]

试过以下事情
查询

{
    "_source": {
        "includes": [
            "name"
        ]
    },
    "query":{
        "bool": [{
          "nested": {
            "path": "review",
            "query": {
              "bool": {
                "must": [
                  {
                    "term": {
                      "review.type": "comment"
                    }
                  }
                ]
              }
            }
          }
        }]
    },
    "sort": ["review.rate"]
}

输出必须是[pqr,,stu]。我怎样才能做到这一点?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题