40 lines
890 B
GraphQL
40 lines
890 B
GraphQL
query BurnupTimesSeriesIterationData(
|
|
$iterationId: IterationID!
|
|
$weight: Boolean = false
|
|
$fullPath: String
|
|
) {
|
|
iteration(id: $iterationId) {
|
|
__typename
|
|
id
|
|
title
|
|
report(fullPath: $fullPath) {
|
|
__typename
|
|
burnupTimeSeries {
|
|
__typename
|
|
date
|
|
completedCount @skip(if: $weight)
|
|
scopeCount @skip(if: $weight)
|
|
completedWeight @include(if: $weight)
|
|
scopeWeight @include(if: $weight)
|
|
}
|
|
stats {
|
|
__typename
|
|
total {
|
|
__typename
|
|
count @skip(if: $weight)
|
|
weight @include(if: $weight)
|
|
}
|
|
complete {
|
|
__typename
|
|
count @skip(if: $weight)
|
|
weight @include(if: $weight)
|
|
}
|
|
incomplete {
|
|
__typename
|
|
count @skip(if: $weight)
|
|
weight @include(if: $weight)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|