augur icon indicating copy to clipboard operation
augur copied to clipboard

Github topics addition to the augur schema

Open cdolfi opened this issue 10 months ago • 1 comments

Projects more and mroe are using the self identified github topics feature: Screenshot 2024-04-01 at 10 59 24 AM Topics are the ones in the blue circle Link to topics overall: https://github.com/topics

It would be incredibly helpful to have this information a part of Augur.

Note: there is a bit of name collision happening as in the "repo_info" table there is a "topic_words" column. I was a little confused initially as I thought that was what that column data was.

cdolfi avatar Apr 01 '24 15:04 cdolfi

This graphql query will help:

  query {
  repository(owner:"kubernetes", name:"kubernetes") {
    repositoryTopics(first:10) {
      edges {
        node {
          id
        }
      }
    }
    }
  }

https://docs.github.com/en/graphql/reference/objects#topic

sgoggins avatar Jun 04 '24 21:06 sgoggins