gitlab/ee/app/assets/javascripts/boards/graphql/epic_board_lists.query.graphql
2021-11-08 04:55:59 +00:00

14 lines
324 B
GraphQL

#import "./epic_board_list.fragment.graphql"
query boardListEpics($fullPath: ID!, $boardId: BoardsEpicBoardID!, $filters: EpicFilters) {
group(fullPath: $fullPath) {
board: epicBoard(id: $boardId) {
lists(epicFilters: $filters) {
nodes {
...EpicBoardListFragment
}
}
}
}
}