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

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

query GroupBoard($fullPath: ID!, $boardId: ID!) {
  workspace: group(fullPath: $fullPath) {
    id
    board(id: $boardId) {
      ...BoardScopeFragment
    }
  }
}