关于Elasticsearch的多个父子搜索

时间:2017-01-23 05:08:53

标签: elasticsearch elasticsearch-2.0

在多个亲子搜索中。我非常担心。请参阅img。

救救我!帮我!让我开心! SOS,在这一年中,我希望有一个新的开始。

enter image description here

请告诉我为什么我无法通过以下关系搜索我想要的数据。

我在等你的最佳答案!

1 个答案:

答案 0 :(得分:0)

如果你有这样的搜索怎么办:

GET /family/father/_search
{
  "query": {
    "has_child": {
       "type": "son",
       "query": {
         "term": {
            "name": "value" <-- give the value to be matched
         }
       }
     }
   }
}

如果您使用match关键字

,该怎么办?
GET /family/father/_search
{
  "query": {
    "has_child": {
      "type": "son",
      "query": {
        "match": { <--- change this from term to match
          "name": "the value"
        }
      }
    }
  }
}