父 ID 查询
编辑父 ID 查询编辑
返回与特定父文档联接的子文档。您可以使用联接字段映射在同一索引中的文档之间创建父子关系。
示例请求编辑
索引设置编辑
要使用 parent_id
查询,您的索引必须包含一个联接字段映射。要了解如何为 parent_id
查询设置索引,请尝试以下示例。
-
创建一个包含联接字段映射的索引。
response = client.indices.create( index: 'my-index-000001', body: { mappings: { properties: { "my-join-field": { type: 'join', relations: { "my-parent": 'my-child' } } } } } ) puts response
PUT /my-index-000001 { "mappings": { "properties": { "my-join-field": { "type": "join", "relations": { "my-parent": "my-child" } } } } }
-
索引 ID 为
1
的父文档。response = client.index( index: 'my-index-000001', id: 1, refresh: true, body: { text: 'This is a parent document.', "my-join-field": 'my-parent' } ) puts response
PUT /my-index-000001/_doc/1?refresh { "text": "This is a parent document.", "my-join-field": "my-parent" }
-
索引父文档的子文档。
PUT /my-index-000001/_doc/2?routing=1&refresh { "text": "This is a child document.", "my-join-field": { "name": "my-child", "parent": "1" } }
示例查询编辑
以下搜索返回 ID 为 1
的父文档的子文档。
GET /my-index-000001/_search { "query": { "parent_id": { "type": "my-child", "id": "1" } } }