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