Skip to content

Instantly share code, notes, and snippets.

View abulhol's full-sized avatar

Benjamin Gathmann abulhol

  • Joe Security LLC
  • Germany
View GitHub Profile
@abulhol
abulhol / example.json
Last active February 10, 2016 13:23
ES Query that returns some empty hits
{ "a" : {
"b" : {
"c": {
"d":{
"first" : [
{"e": {
"f": {
"second" : [
{"message": "Nobody expects the Spanish inquisition!"}
@abulhol
abulhol / gist:a5ae6e01e2927c320f61
Last active February 10, 2016 11:57
ES empty reply (inner hits)
"hits" : {
"total" : 531,
"max_score" : 0.0,
"hits" : [ {
"_index" : "testing",
"_type" : "reports",
"_id" : "AVLBTo7_0keClpVwERg_",
"_score" : 0.0,
"inner_hits" : {
"kids0" : {
@abulhol
abulhol / gist:0869e5c418b77f97e752
Last active April 28, 2017 04:40
ES query with top level inner hits that works
{
"query" : {
"bool" : {
"must" : [{
"nested" : {
"path" : "a.b.c.d.first",
"query" : {
"nested" : {
"path" : "a.b.c.d.first.e.f.second",
"query" : {