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

merge_request_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: 5d05cb2f34cbff11a5de525d784a9d669f2ee01f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query mergeRequestTimeTracking($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    id
    issuable: mergeRequest(iid: $iid) {
      id
      humanTimeEstimate
      humanTotalTimeSpent
      timeEstimate
      totalTimeSpent
    }
  }
}