Skip to content

Instantly share code, notes, and snippets.

@jonwhittlestone
Created August 23, 2019 14:06
Show Gist options
  • Save jonwhittlestone/6bd4f77025999b27ae36de76e6185a3f to your computer and use it in GitHub Desktop.
Save jonwhittlestone/6bd4f77025999b27ae36de76e6185a3f to your computer and use it in GitHub Desktop.
Elasticsearch query for isbn
{
"query": {
"bool": {
"should": [
{
"match": {
"isbn_keyword": "9780008179823"
}
}
]
}
},
"size": 10,
"_source": {
"includes": [
"*"
],
"excludes": []
},
"from": 0,
"sort": [
{
"real_grosssale_qty": {
"order": "desc"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment