0

我有这样的弹性数据

{
  "xId" : "25b35718-1804-428e-87fc-e215422d21a0",
  "date" : "2019-10-13T07:07:07.558Z",
  "type" : "promo",
  "accountId" : 50,
  "readBy" : [
    "b",
    "a"
  ]
}

我想检索具有多个条件的数据,所以我使用带有 should 和 must_not 的查询,当我使用该查询时,数组返回空,但现在数据仍然出现,是否缺少某些内容?

这是我的示例查询

{"query": {
          "constant_score": {
            "filter": {
              "bool": {
                "should": [
                  {
                    "terms": {
                      "accountId": [50]
                    }
                  },{
                    "terms": {
                      "type": ["promo"]
                    }
                  },
                  {
                    "match": {
                      "userId": "a"
                    }
                  }
                ],
                "must_not": [
                  {
                    "terms": {
                      "type": []
                    }
                  }, {
                    "terms": {
                      "readBy": ["a"]
                    }
                  }

                ]
              }
            }
          }
        }
      }
4

1 回答 1

0

解决了我使用这样的查询

{"query": {
      "constant_score": {
        "filter": {
          "bool": {
            "should": [
              {
                "terms": {
                  "accountId": [50]
                }
              },{
                "terms": {
                  "type": ["promo"]
                }
              },
              {
                "match": {
                  "userId": "a"
                }
              }
            ],
            "must_not": [
              {
                "terms": {
                  "type": []
                }
              }, {
                "term": {
                  "readBy.keyword": "a"
                }
              }

            ]
          }
        }
      }
    }
  }
于 2020-03-18T17:57:47.893 回答