Skip to content

Instantly share code, notes, and snippets.

@mottaquikarim
Created December 29, 2020 17:15
Show Gist options
  • Save mottaquikarim/c3b3b43363bae46de96fc8298f3dc416 to your computer and use it in GitHub Desktop.
Save mottaquikarim/c3b3b43363bae46de96fc8298f3dc416 to your computer and use it in GitHub Desktop.
GET /_search
{
"query": {
"bool": {
"must": [
{ "match": { "title": "Search" }},
{ "match": { "content": "Elasticsearch" }}
],
"filter": [
{ "term": { "status": "published" }},
{ "range": { "publish_date": { "gte": "2015-01-01" }}}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment