Guest User

Untitled

a guest
Jan 6th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. //sort query sorts the document based on the field specified
  2. {
  3. "query": {
  4. "match_all": {},
  5. "sort": [
  6. {
  7. "id": {
  8. "order": "desc"
  9. }
  10. },
  11. "_score"
  12. ]
  13. }
  14. }
Add Comment
Please, Sign In to add comment