4

我想搜索query_string包含BobIndustry_Type_ID一个8OR 9

我收到一个解析错误:Parse Failure [No parser for element [Industry_Type_ID]]

{
    "query" : {
        "query_string":{"query":"Bob"},
        "terms" : {
            "Industry_Type_ID" : [ "8", "9" ],
            "minimum_match" : 1
        }
    }
}

我确定我遗漏了一些明显的东西。

4

1 回答 1

7

您可以使用带有两个子句的bool 查询来做到这一点:must

{
    "query" : {
        "bool" : {
            "must" : [
                {
                    "query_string":{"query":"Bob"}
                },
                {
                    "terms" : {
                        "Industry_Type_ID" : [ "8", "9" ],
                        "minimum_match" : 1
                    }
                }
            ]
        }
    }
}
于 2012-09-05T19:36:37.587 回答