tighten / gistlog

GistLog - simple, easy blogging based on GitHub gists

Home Page:https://gistlog.co/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Show count of stars for a given post

mattstauffer opened this issue · comments

#71

Not possible with the GitHub API yet.

This could be accomplished with the graphql API- not sure if you want to go that direction though. Something like-

{
  viewer {
    gist(name: "1c76d40371b295184845") {
      id
      stargazerCount
    }
  }
}

Sounds fine by me!