14 lines
255 B
GraphQL
14 lines
255 B
GraphQL
|
query epicDueDate($fullPath: ID!, $iid: ID) {
|
||
|
workspace: group(fullPath: $fullPath) {
|
||
|
__typename
|
||
|
issuable: epic(iid: $iid) {
|
||
|
__typename
|
||
|
id
|
||
|
dueDate
|
||
|
dueDateIsFixed
|
||
|
dueDateFixed
|
||
|
dueDateFromMilestones
|
||
|
}
|
||
|
}
|
||
|
}
|