13 lines
265 B
GraphQL
13 lines
265 B
GraphQL
query epicStartDate($fullPath: ID!, $iid: ID) {
|
|
workspace: group(fullPath: $fullPath) {
|
|
__typename
|
|
issuable: epic(iid: $iid) {
|
|
__typename
|
|
id
|
|
startDate
|
|
startDateIsFixed
|
|
startDateFixed
|
|
startDateFromMilestones
|
|
}
|
|
}
|
|
}
|