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

group_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: cb42cb3f73d12cd224467bd9ac6a09484a84f87a (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 GroupBoard($fullPath: ID!, $boardId: ID!) {
  group(fullPath: $fullPath) {
    board(id: $boardId) {
      lists {
        nodes {
          ...BoardListFragment
        }
      }
    }
  }
}