aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/identity/GetUserStatistic.graphql
blob: a759832055b359f3aba5b426bf72697839abb9a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query GetUserStatistic(
  $authorQuery: String!
  $participantQuery: String!
  $actionQuery: String!
) {
  repository {
    authored: allBugs(query: $authorQuery) {
      totalCount
    }
    participated: allBugs(query: $participantQuery) {
      totalCount
    }
    actions: allBugs(query: $actionQuery) {
      totalCount
    }
  }
}