我正在尝试在弹性搜索上索引和查询简单的嵌套数据,但出现以下错误:
"filter":[]}}}]]]; nested: QueryParsingException[[products] [_na] query malformed, no field after start_object]; }]
我的映射是:
{
"product": {
"properties": {
"id": { "type": "integer", "store": true },
"description": { "type": "string" },
"kind": { "type": "string" },
"name": { "type": "string", "store": true },
"tags": {
"type": "nested",
"properties": {
"label": {
"type": "string",
"index": "not_analyzed",
"omit_norms": true,
"index_options": "docs"
},
"slug": {
"type": "string",
"index": "not_analyzed",
"omit_norms": true,
"index_options": "docs"
}
}
}
}
}
}
我已成功获取以下查询的所有耳机:
{
"query": {
"filtered": {
"query": {
"bool": {
"must": {
"match": { "kind": "Headphone" }
},
"must_not": [],
"should": []
}
},
"filter": []
}
}
}
我的问题是在支持方面的同时找到“带有 XX 标签的耳机”或“带有 XX 和 YY 标签的耳机(另一个查询)”的正确查询结构是什么?
我只是尝试将下面的查询部分与上面的查询合并,但我找不到放置它的“正确”位置(键):
{
"nested": {
"path": "tags",
"filter": {
"bool": {
"must": {
"terms": {
"tags.slug": [ "discount", "black"],
"minimum_should_match": 1
}
}
}
}
}
}