Created
May 18, 2014 02:04
-
-
Save phirschybar/2747bbbfa324d0cc12f2 to your computer and use it in GitHub Desktop.
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
{ | |
"index": "index_name", | |
"from": 0, | |
"size": 30, | |
"body": { | |
"min_score": 0.5, | |
"_source": { | |
"include": [ | |
"id", | |
"name", | |
"image" | |
] | |
}, | |
"query": { | |
"filtered": { | |
"filter": { | |
"bool": { | |
"must_not": { | |
"missing": { | |
"field": "image", | |
"existence": true, | |
"null_value": true | |
} | |
} | |
} | |
} | |
} | |
}, | |
"sort": { | |
"_score": { | |
"order": "desc" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment