aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/identity/GetUserStatistic.graphql
blob: bc7ab874683741d9548a53b38593adc7ab49a020 (plain) (blame)
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
    }
  }
}