Skip to content

Instantly share code, notes, and snippets.

@johnnypeck
Created November 13, 2012 19:03
Show Gist options
  • Save johnnypeck/4067700 to your computer and use it in GitHub Desktop.
Save johnnypeck/4067700 to your computer and use it in GitHub Desktop.
No query registered for not
"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