debian-mirror-gitlab/app/assets/javascripts/boards/graphql/board_lists.query.graphql

31 lines
642 B
GraphQL
Raw Normal View History

2021-02-22 17:27:13 +05:30
#import "ee_else_ce/boards/graphql/board_list.fragment.graphql"
2021-01-03 14:25:43 +05:30
2021-12-11 22:18:48 +05:30
query BoardLists(
2021-01-03 14:25:43 +05:30
$fullPath: ID!
$boardId: ID!
$filters: BoardIssueInput
$isGroup: Boolean = false
$isProject: Boolean = false
) {
group(fullPath: $fullPath) @include(if: $isGroup) {
board(id: $boardId) {
2021-10-27 15:23:28 +05:30
hideBacklogList
2021-01-03 14:25:43 +05:30
lists(issueFilters: $filters) {
nodes {
...BoardListFragment
}
}
}
}
project(fullPath: $fullPath) @include(if: $isProject) {
board(id: $boardId) {
2021-10-27 15:23:28 +05:30
hideBacklogList
2021-01-03 14:25:43 +05:30
lists(issueFilters: $filters) {
nodes {
...BoardListFragment
}
}
}
}
}