我正在使用fun-with-elasticsearch-s-children-and-nested-documents/中的一些简单示例来试验 Elasticsearch 父/子。我可以通过在博客中运行查询来查询子元素
curl -XPOST localhost:9200/authors/bare_author/_search -d '{
但是,我无法调整 has_parent 查询的示例。有人可以指出我做错了什么,因为我一直得到 0 个结果。
这是我尝试过的
#Returns 0 hits
curl -XPOST localhost:9200/authors/book/_search -d '{
"query": {
"has_parent": {
"type": "bare_author",
"query" : {
"filtered": {
"query": { "match_all": {}},
"filter" : {"term": { "name": "Alastair Reynolds"}}
}
}
}
}
}'
#did not work either
curl -XPOST localhost:9200/authors/book/_search -d '{
"query": {
"has_parent" : {
"type" : "bare_author",
"query" : {
"term" : {
"name" : "Alastair Reynolds"
}
}
}
}
}'
这适用于匹配,但它只匹配名字
#works but matches just first name
curl -XPOST localhost:9200/authors/book/_search -d '{
"query": {
"has_parent" : {
"type" : "bare_author",
"query" : {
"match" : {"name": "Alastair"}
}
}
}
}'