Skip to content

Instantly share code, notes, and snippets.

@TomonoriSoejima
Created January 5, 2023 05:42
Show Gist options
  • Save TomonoriSoejima/445a8651ca150c170f426f2222bfd426 to your computer and use it in GitHub Desktop.
Save TomonoriSoejima/445a8651ca150c170f426f2222bfd426 to your computer and use it in GitHub Desktop.
sort_after.md
GET .fleet-agents-7/_search?size=2
{
  "sort": [
    {
      "updated_at": {
        "order": "desc"
      }
    }
  ]
}


GET .fleet-agents-7/_search?size=2
{
  "search_after": [
    1672897183000
  ],
  "sort": [
    {
      "updated_at": {
        "order": "desc"
      }
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment