epic.fragment.graphql 423 Bytes
Newer Older
Florie Guibert's avatar
Florie Guibert committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
fragment BaseEpic on Epic {
  id
  iid
  title
  description
  state
  webUrl
  startDate
  dueDate
  hasChildren
  descendantCounts {
    openedEpics
    closedEpics
    openedIssues
    closedIssues
  }
  group {
    name
    fullName
  }
}

fragment EpicNode on Epic {
  ...BaseEpic
  state
  reference(full: true)
  createdAt
  closedAt
  relationPath
  createdAt
  hasChildren
  hasIssues
  group {
    fullPath
  }
}