Skip to content

Instantly share code, notes, and snippets.

@PtkFerraro
Created May 10, 2017 20:48
Show Gist options
  • Save PtkFerraro/c0f8ed300566cce3b5118fff1522a421 to your computer and use it in GitHub Desktop.
Save PtkFerraro/c0f8ed300566cce3b5118fff1522a421 to your computer and use it in GitHub Desktop.
Elastic Search
{
"size": 1000,
"sort": [
{
"match_start": {
"order": "asc"
}
}
],
"query": {
"bool": {
"must": [
{
"query_string": {
"query": "Santos (SAN) X Avaí FC (AVAI)",
"fields": [
"title^10",
"match_title.snowball^2",
"match_title.shingles^2",
"match_title.ngrams"
]
}
}
],
"filter": [
{
"bool": {
"must": [
{
"terms": {
"is_adult": [
false
]
}
},
{
"range": {
"match_start": {
"gte": "now-15m"
}
}
}
]
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment