在多个亲子搜索中。我非常担心。请参阅img。
救救我!帮我!让我开心! SOS,在这一年中,我希望有一个新的开始。
请告诉我为什么我无法通过以下关系搜索我想要的数据。
我在等你的最佳答案!
答案 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"
}
}
}
}
}