gitlab/ee/app/assets/javascripts/iterations/queries/group_iterations_in_cadence.query.graphql
2021-11-08 04:55:59 +00:00

32 lines
658 B
GraphQL

#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"
#import "./iteration_list_item.fragment.graphql"
query groupIterations(
$fullPath: ID!
$iterationCadenceId: ID!
$state: IterationState!
$beforeCursor: String
$afterCursor: String
$firstPageSize: Int
$lastPageSize: Int
) {
workspace: group(fullPath: $fullPath) {
id
iterations(
iterationCadenceIds: [$iterationCadenceId]
state: $state
before: $beforeCursor
after: $afterCursor
first: $firstPageSize
last: $lastPageSize
) {
nodes {
...IterationListItem
}
pageInfo {
...PageInfo
}
}
}
}