Something messed with auto-indent. Fixed now.

This commit is contained in:
Isabel Drost-Fromm 2016-05-12 12:58:22 +02:00
parent 126ff91bf6
commit 0ad87b25cf
15 changed files with 124 additions and 116 deletions

View File

@ -178,7 +178,7 @@ GET /_search
}
}
}
}
}
}
--------------------------------------------------
// CONSOLE

View File

@ -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" : [

View File

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