Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_board.query.graphql « queries « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4620a7e0fd55f717146fcf063ee3b245236a3e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "ee_else_ce/boards/queries/board_list.fragment.graphql"

query ProjectBoard($fullPath: ID!, $boardId: ID!) {
  project(fullPath: $fullPath) {
    board(id: $boardId) {
      lists {
        nodes {
          ...BoardListFragment
        }
      }
    }
  }
}