Created
January 4, 2018 06:13
-
-
Save aavrug/1b69d38b9f10e4b3322e2646051fdfc6 to your computer and use it in GitHub Desktop.
Elastic query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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