13 lines
276 B
GraphQL
13 lines
276 B
GraphQL
query issueTimeTracking($fullPath: ID!, $iid: String) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
__typename
|
|
issuable: issue(iid: $iid) {
|
|
__typename
|
|
id
|
|
humanTimeEstimate
|
|
humanTotalTimeSpent
|
|
timeEstimate
|
|
totalTimeSpent
|
|
}
|
|
}
|
|
}
|