我的映射:
"mappings": {
"role_permission_parent": {
"properties": {
"resourceURI": {
"type": "string"
},
"resourceLabel": {
"type": "string"
}
}
},
"role_permission_child": {
"_parent": {
"type": "role_permission_parent"
},
"properties": {
"resourceURI": {
"type": "string"
},
"resourceLabel": {
"type": "string"
}
}
}
}
我有超过100k的文件由父母索引。
Question:
我如何在父母一方的孩子中进行搜索?
这意味着..我想在“_parent”里面的字段“resourceLabale”中找到值“someting”的孩子:12345。
答案 0 :(得分:0)