Skip to content

Instantly share code, notes, and snippets.

@kanapuli
Last active January 1, 2018 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kanapuli/151efab863fe2455c28de702f9d286ce to your computer and use it in GitHub Desktop.
Save kanapuli/151efab863fe2455c28de702f9d286ce to your computer and use it in GitHub Desktop.
//sort query sorts the document based on the field specified
{
"query": {
"match_all": {},
"sort": [
{
"id": {
"order": "desc"
}
},
"_score"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment