2022-10-11 01:57:18 +05:30
|
|
|
#import "~/graphql_shared/fragments/issue_time_tracking.fragment.graphql"
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
query issueTimeTracking($fullPath: ID!, $iid: String) {
|
|
|
|
workspace: project(fullPath: $fullPath) {
|
2022-01-26 12:08:38 +05:30
|
|
|
id
|
2021-09-04 01:27:46 +05:30
|
|
|
issuable: issue(iid: $iid) {
|
2022-10-11 01:57:18 +05:30
|
|
|
...IssueTimeTrackingFragment
|
2021-09-04 01:27:46 +05:30
|
|
|
humanTimeEstimate
|
|
|
|
timeEstimate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|