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

project_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: 2a9142696d2b9a6e28737cb17dd3739e35e4cc68 (plain)
1
2
3
4
5
6
7
8
9
10
#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"

query ProjectBoard($fullPath: ID!, $boardId: BoardID!) {
  workspace: project(fullPath: $fullPath) {
    id
    board(id: $boardId) {
      ...BoardScopeFragment
    }
  }
}