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