Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_time_tracking.query.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4d0e9b5debd45d75fe21e412b8910c55ffd66a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query issueTimeTracking($fullPath: ID!, $iid: String) {
  workspace: project(fullPath: $fullPath) {
    id
    issuable: issue(iid: $iid) {
      id
      humanTimeEstimate
      humanTotalTimeSpent
      timeEstimate
      totalTimeSpent
    }
  }
}