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

30 lines
569 B
GraphQL

#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"
query projectIterationCadences(
$fullPath: ID!
$beforeCursor: String = ""
$afterCursor: String = ""
$firstPageSize: Int
$lastPageSize: Int
) {
workspace: project(fullPath: $fullPath) {
id
iterationCadences(
includeAncestorGroups: true
before: $beforeCursor
after: $afterCursor
first: $firstPageSize
last: $lastPageSize
) {
nodes {
id
title
durationInWeeks
}
pageInfo {
...PageInfo
}
}
}
}