summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/merge_request_time_tracking.query.graphql
blob: 12ef78a64537c7b0262e34a785271658c9816e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "~/graphql_shared/fragments/merge_request_time_tracking.fragment.graphql"

query mergeRequestTimeTracking($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    id
    issuable: mergeRequest(iid: $iid) {
      ...MergeRequestTimeTrackingFragment
      humanTimeEstimate
      timeEstimate
    }
  }
}