summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/epic_start_date.query.graphql
blob: c6c24fd3d95545eb27682c37ab32df819b21e3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query epicStartDate($fullPath: ID!, $iid: ID) {
  workspace: group(fullPath: $fullPath) {
    __typename
    issuable: epic(iid: $iid) {
      __typename
      id
      startDate
      startDateIsFixed
      startDateFixed
      startDateFromMilestones
    }
  }
}