Created
November 13, 2012 19:03
-
-
Save johnnypeck/4067700 to your computer and use it in GitHub Desktop.
No query registered for not
This file contains 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" : { | |
"filtered": { | |
"query": { "match_all" : {}}, | |
"filter": { | |
"not": { | |
"nested": { | |
"path": "leases", | |
"filter": { | |
"and": [ | |
{ | |
"range": { | |
"leases.start.date" : { | |
"from": "2009-05-06 00:00:00", | |
"include_upper": true | |
} | |
} | |
}, | |
{ | |
"range": { | |
"leases.end.date": { | |
"from": "2009-05-29 00:00:00", | |
"include_lower": true | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment