Fix parent_id example in docs
And fix some indentation I noticed while looking up the query.
This commit is contained in:
parent
26f92f8482
commit
75d5b3d9eb
|
@ -69,7 +69,7 @@ GET my_index/_search
|
|||
{
|
||||
"query": {
|
||||
"parent_id": { <1>
|
||||
"type": "my_parent",
|
||||
"type": "my_child",
|
||||
"id": "1"
|
||||
}
|
||||
},
|
||||
|
@ -84,7 +84,6 @@ GET my_index/_search
|
|||
"script_fields": {
|
||||
"parent": {
|
||||
"script": {
|
||||
"lang": "painless",
|
||||
"inline": "doc['_parent']" <3>
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ GET /my_index/_search
|
|||
"query": {
|
||||
"parent_id" : {
|
||||
"type" : "blog_tag",
|
||||
"id" : "1"
|
||||
"id" : "1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue