12 lines
305 B
GraphQL
12 lines
305 B
GraphQL
#import "~/graphql_shared/fragments/issue_time_tracking.fragment.graphql"
|
|
|
|
query issueTimeTracking($fullPath: ID!, $iid: String) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
id
|
|
issuable: issue(iid: $iid) {
|
|
...IssueTimeTrackingFragment
|
|
humanTimeEstimate
|
|
timeEstimate
|
|
}
|
|
}
|
|
}
|