如果我在弹性搜索中有一个子父映射。我将如何根据孩子的统计数据寻找父母。
例子:
{
'parent':{
'_id':{
'path':'parent_id'
},
'properties':{
'parent_id':{
'type':'string'
},
'name':{
'type':'string'
},
'job':{
'type':'string'
},
'age':{
'type':'integer'
},
}
}
}{
'child':{
'_parent':{
'type':'parent'
},
'_id':{
'path':'child_id'
},
'properties':{
'child_id':{
'type':'string'
},
'name':{
'type':'string'
},
'favorite_toy':{
'type':'string'
},
'age':{
'type':'integer'
},
}
}
}
我将如何:
- 得到所有有一个孩子叫“鲍勃”的父母?
- 计算所有有一个孩子叫“鲍勃”的父母?
- 得到所有有两个以上孩子的父母?
- 得到所有有 2 个 5 岁以上孩子的父母?