Last active
February 10, 2016 13:23
-
-
Save abulhol/d951aef61c3ff4225306 to your computer and use it in GitHub Desktop.
ES Query that returns some empty hits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "a" : { | |
"b" : { | |
"c": { | |
"d":{ | |
"first" : [ | |
{"e": { | |
"f": { | |
"second" : [ | |
{"message": "Nobody expects the Spanish inquisition!"} | |
] | |
} | |
} | |
}, | |
{"e": { | |
"f": null | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
} | |
"registryactivities" : { | |
"keyOpened" : null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
¨{ | |
"query": { | |
"bool": { | |
"must": [ | |
{ | |
"nested": { | |
"path": "a.b.c.d.first", | |
"query": { | |
"nested": { | |
"path": "a.b.c.d.first.e.f.second", | |
"query": { | |
"bool": { | |
"filter": [ | |
{ | |
"term": { | |
"a.b.c.d.first.e.f.second.message": "Nobody expects the Spanish inquisition!" | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
} | |
} | |
] | |
} | |
}, | |
"inner_hits": { | |
"kids0": { | |
"path": { | |
"a.b.c.d.first": { | |
"size" : 1, | |
"_source": false, | |
"inner_hits": { | |
"kids0": { | |
"path": { | |
"a.b.c.d.first.e.f.second": { | |
"size" : 1, | |
"_source": [ | |
"message", | |
"bla", | |
"blub" | |
], | |
"query": { | |
"bool": { | |
"filter": [ | |
{ | |
"term": { | |
"a.b.c.d.first.e.f.second.message": "Nobody expects the Spanish inquisition!" | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment