summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/epic_due_date.query.graphql
blob: f60f44abebdf43573232b9c1b66a3815a577e3e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query epicDueDate($fullPath: ID!, $iid: ID) {
  workspace: group(fullPath: $fullPath) {
    __typename
    issuable: epic(iid: $iid) {
      __typename
      id
      dueDate
      dueDateIsFixed
      dueDateFixed
      dueDateFromMilestones
    }
  }
}