1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
query GetUserStatistic( $authorQuery: String! $participantQuery: String! $actionQuery: String! ) { repository { name authored: allBugs(query: $authorQuery) { totalCount } participated: allBugs(query: $participantQuery) { totalCount } actions: allBugs(query: $actionQuery) { totalCount } } }