Skip to content

Instantly share code, notes, and snippets.

@semyont
Last active May 16, 2017 06:34
Show Gist options
  • Save semyont/91c4e0b55a7d30cb60cb0f1f72a5a81a to your computer and use it in GitHub Desktop.
Save semyont/91c4e0b55a7d30cb60cb0f1f72a5a81a to your computer and use it in GitHub Desktop.
# GET /_search
{
"query": {
"bool": {
"must": [
{ "match": { "doc.title": "Search" }},
{ "match": { "doc.content": "Elasticsearch" }}
],
"filter": [
{ "term": { "doc.status": "published" }},
{ "range": { "doc.publish_date": { "gte": "2015-01-01" }}}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment