Skip to content

Instantly share code, notes, and snippets.

@quoeamaster
Created June 24, 2018 01:18
Show Gist options
  • Save quoeamaster/3e7f825623ecbab8f518207c9756c257 to your computer and use it in GitHub Desktop.
Save quoeamaster/3e7f825623ecbab8f518207c9756c257 to your computer and use it in GitHub Desktop.
medium queryDSL match_all sorting
GET books_from_amazon/_search
{
"size": 20,
"query": {
"match_all": {}
},
"sort": [
{
"name.keyword": {
"order": "desc"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment