Fix parent_id example in docs

And fix some indentation I noticed while looking up the query.
This commit is contained in:
Nik Everett 2017-01-10 10:01:31 -05:00
parent 26f92f8482
commit 75d5b3d9eb
2 changed files with 2 additions and 3 deletions

View File

@ -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>
}
}

View File

@ -40,7 +40,7 @@ GET /my_index/_search
"query": {
"parent_id" : {
"type" : "blog_tag",
"id" : "1"
"id" : "1"
}
}
}