Skip to content

Instantly share code, notes, and snippets.

@aavrug
Created January 4, 2018 06:13
Show Gist options
  • Save aavrug/1b69d38b9f10e4b3322e2646051fdfc6 to your computer and use it in GitHub Desktop.
Save aavrug/1b69d38b9f10e4b3322e2646051fdfc6 to your computer and use it in GitHub Desktop.
Elastic query
{
"sort": [
{
"threshold": {
"order": "desc"
}
},
{
"last_login": {
"order": "desc"
}
},
{
"_score": {
"order": "desc"
}
}
],
"from": 0,
"track_scores": true,
"aggs": {},
"query": {
"multi_match": {
"must": [
{
"query_string": {
"use_dis_max": true,
"fields": [
"course_name^2",
"course_type",
"skills^10"
],
"query": "\"Angular Js\" OR \"Java\" OR \"Angular\" OR \"Js\""
}
}
]
}
},
"size": 50
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment