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: 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
    }
  }
}