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