Skip to content

Instantly share code, notes, and snippets.

@ja-ilija
Created April 19, 2015 17:18
Show Gist options
  • Save ja-ilija/7a8290775acf0127d896 to your computer and use it in GitHub Desktop.
Save ja-ilija/7a8290775acf0127d896 to your computer and use it in GitHub Desktop.
time range query es
{
"size": 10,
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"bool": {
"must": [
{
"range": {
"timestamp": {
"from": 1429454857,
"to": 1429456057,
"include_lower": true,
"include_upper": true
}
}
}
]
}
},
"_source": {
"includes": [
"title"
],
"excludes": []
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment