hpi-epic / repositoryguide

Guiding you in exploring your team's Git(Hub) repository
MIT License
1 stars 1 forks source link

Metric: Top Issue submitters #53

Closed SanJSp closed 3 years ago

SanJSp commented 3 years ago

AS a scrum coach, I'd like to see who creates new issues for each sprint.

This could be displayed in a kind of horizontal bar chart containing user profiles/usernames

SanJSp commented 3 years ago

I think this horizontal bar Chart fits the goal of the metric:

grafik

SanJSp commented 3 years ago

Current query


query {
  repository(owner: "hpi-swt2", name: "connections-portal") {
    issues(first: 100) {
       pageInfo { 
            hasNextPage
          }
      edges {
        cursor
        node {
          title
          number
          createdAt
          author {
            login
          }
        }
      }
    }
  }
}
SanJSp commented 3 years ago

Feedback: