summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/merge_request_time_tracking.query.graphql
blob: b1ab1bcbe873efae29ca966ebc5c6cee5df12668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query mergeRequestTimeTracking($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    __typename
    issuable: mergeRequest(iid: $iid) {
      __typename
      id
      humanTimeEstimate
      humanTotalTimeSpent
      timeEstimate
      totalTimeSpent
    }
  }
}