summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/merge_request_time_tracking.query.graphql
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
    }
  }
}