Skip to content

Commit

Permalink
[DOCS] Fix indentation in nested query (elastic#61270)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen committed Aug 19, 2020
1 parent 3c690e6 commit a6348af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/reference/query-dsl/nested-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ GET /my_index/_search
"query" : {
"bool" : {
"must" : [
{ "match" : {"obj1.name" : "blue"} },
{ "range" : {"obj1.count" : {"gt" : 5}} }
{ "match" : {"obj1.name" : "blue"} },
{ "range" : {"obj1.count" : {"gt" : 5}} }
]
}
},
Expand Down Expand Up @@ -115,4 +115,4 @@ If `false`, {es} returns an error if the `path` is an unmapped field.

You can use this parameter to query multiple indices that may not contain the
field `path`.
--
--

0 comments on commit a6348af

Please sign in to comment.