CenWIDev / CenWIDev.github.io

MIT License
2 stars 1 forks source link

Add list of existing github repos #5

Closed daniel-packard closed 2 years ago

daniel-packard commented 7 years ago

This is an idea that came up in the slack channel. Not sure how it will fit into the design, but the list of repos can be obtained through the public github API at:

daniel-packard commented 7 years ago

Or, if you want to try out graphql you can try making a more efficient query like this:

query {
    organization (login:"cenwidev") {
    id,
    repositories(first:5) {
      nodes {
        name
        url
      }
    }
  }
}

you can experiement with github's graphql endpoint at : https://developer.github.com/v4/explorer/