Skip to content

Instantly share code, notes, and snippets.

@TomonoriSoejima
Created September 8, 2020 14:26
Show Gist options
  • Save TomonoriSoejima/98dfa41b439bf25deb4980e84c8e57ce to your computer and use it in GitHub Desktop.
Save TomonoriSoejima/98dfa41b439bf25deb4980e84c8e57ce to your computer and use it in GitHub Desktop.
list the user with top public gist counts
GET support/_search?size=30
{
  "_source": [
    "public_gists",
    "login",
    "name",
    "gists_url"
  ],
  "sort": [
    {
      "public_gists": {
        "order": "desc"
      }
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment