epic.fragment.graphql 311 Bytes
Newer Older
Florie Guibert's avatar
Florie Guibert committed
1 2 3 4 5 6 7 8 9 10
fragment BaseEpic on Epic {
  id
  iid
  title
  description
  state
  webUrl
  startDate
  dueDate
  hasChildren
11
  hasParent
12
  confidential
13
  descendantWeightSum {
Florie Guibert's avatar
Florie Guibert committed
14
    closedIssues
15
    openedIssues
Florie Guibert's avatar
Florie Guibert committed
16
  }
17 18 19 20
  descendantCounts {
    openedEpics
    closedEpics
  }
Florie Guibert's avatar
Florie Guibert committed
21 22 23 24 25 26
  group {
    name
    fullName
    fullPath
  }
}