epicChildEpics.query.graphql 1.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
query epicChildEpics(
  $fullPath: ID!
  $iid: ID!
  $state: EpicState
  $sort: EpicSort
  $startDate: Time
  $dueDate: Time
) {
  group(fullPath: $fullPath) {
    id
    name
    epic(iid: $iid) {
      id
      title
      children(state: $state, sort: $sort, startDate: $startDate, endDate: $dueDate) {
        edges {
          node {
            id
            title
20
            description
21 22 23 24
            state
            webUrl
            startDate
            dueDate
charlieablett's avatar
charlieablett committed
25 26 27 28
            descendantWeightSum {
              closedIssues
              openedIssues
            }
29 30 31 32
            group {
              name
              fullName
            }
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
            children {
              edges {
                node {
                  id
                  title
                  description
                  state
                  webUrl
                  startDate
                  dueDate
                  descendantWeightSum {
                    closedIssues
                    openedIssues
                  }
                  group {
                    name
                    fullName
                  }
                }
              }
            }
54 55 56 57 58 59
          }
        }
      }
    }
  }
}