gpt4 book ai didi

elasticsearch - 组合 Elasticsearch 查询

转载 作者:行者123 更新时间:2023-12-03 02:01:40 25 4
gpt4 key购买 nike

我有以下两个查询:

GET places/_search
{
"query": {
"filtered": {
"filter": {
"bool": {
"should": [
{
"term": {
"approved": false
}
}
]
}
}
}
}
}

GET places/_search
{
"query": {
"filtered": {
"filter": {
"geo_bounding_box": {
"loc": {
"top_left": "54.6152065515344, -6.09334913041994",
"bottom_right": "54.5754258987271, -5.76633420732423"
}
}
}
}
}
}

两者都工作正常,但是我在合并查询时遇到问题,并且想知道是否有人可以提供帮助。基本上,我想检索指定边界框内所有项目,其中“approved”属性为false。

最佳答案

您可以保留filtered查询并像这样在bool/must过滤器中合并两个条件

curl -XPOST localhost:9200/places/_search -d '{
"query": {
"filtered": {
"filter": {
"bool": {
"must": [
{
"term": {
"approved": false
}
},
{
"geo_bounding_box": {
"loc": {
"top_left": "54.6152065515344, -6.09334913041994",
"bottom_right": "54.5754258987271, -5.76633420732423"
}
}
}
]
}
}
}
}
}'

关于elasticsearch - 组合 Elasticsearch 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31897546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com