Skip to content
Snippets Groups Projects

Fetch child epics with colours when FF is enabled

All threads resolved!
5 files
+ 48
53
Compare changes
  • Side-by-side
  • Inline
Files
5
#import "./epic.fragment.graphql"
query epicChildEpicsWithColor(
$fullPath: ID!
$iid: ID!
$state: EpicState
$sort: EpicSort
$timeframe: Timeframe
$labelName: [String!] = []
$authorUsername: String = ""
$confidential: Boolean
$search: String = ""
) {
group(fullPath: $fullPath) {
id
name
epic(iid: $iid) {
id
title
hasChildren
children(
state: $state
sort: $sort
labelName: $labelName
authorUsername: $authorUsername
confidential: $confidential
search: $search
timeframe: $timeframe
) {
edges {
node {
...BaseEpic
color
textColor
}
}
}
}
}
}
Loading