Something messed with auto-indent. Fixed now.
This commit is contained in:
parent
126ff91bf6
commit
0ad87b25cf
|
@ -178,7 +178,7 @@ GET /_search
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
--------------------------------------------------
|
||||
// CONSOLE
|
||||
|
|
|
@ -10,7 +10,10 @@ GET /_search
|
|||
{
|
||||
"query": {
|
||||
"bool" : {
|
||||
"must": {
|
||||
"query" : {
|
||||
"match_all" : {}
|
||||
},
|
||||
"filter" : {
|
||||
"geo_polygon" : {
|
||||
"person.location" : {
|
||||
"points" : [
|
||||
|
@ -58,7 +61,10 @@ GET /_search
|
|||
{
|
||||
"query": {
|
||||
"bool" : {
|
||||
"must" : {
|
||||
"query" : {
|
||||
"match_all" : {}
|
||||
},
|
||||
"filter" : {
|
||||
"geo_polygon" : {
|
||||
"person.location" : {
|
||||
"points" : [
|
||||
|
@ -86,7 +92,10 @@ GET /_search
|
|||
{
|
||||
"query": {
|
||||
"bool" : {
|
||||
"must" : {
|
||||
"query" : {
|
||||
"match_all" : {}
|
||||
},
|
||||
"filter" : {
|
||||
"geo_polygon" : {
|
||||
"person.location" : {
|
||||
"points" : [
|
||||
|
@ -112,7 +121,10 @@ GET /_search
|
|||
{
|
||||
"query": {
|
||||
"bool" : {
|
||||
"must" : {
|
||||
"query" : {
|
||||
"match_all" : {}
|
||||
},
|
||||
"filter" : {
|
||||
"geo_polygon" : {
|
||||
"person.location" : {
|
||||
"points" : [
|
||||
|
|
|
@ -14,12 +14,8 @@ GET /_search
|
|||
"query": {
|
||||
"indices" : {
|
||||
"indices" : ["index1", "index2"],
|
||||
"query" : {
|
||||
"term" : { "tag" : "wow" }
|
||||
},
|
||||
"no_match_query" : {
|
||||
"term" : { "tag" : "kow" }
|
||||
}
|
||||
"query" : { "term" : { "tag" : "wow" } },
|
||||
"no_match_query" : { "term" : { "tag" : "kow" } }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue