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

project_boards.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: b8879bc260c50ff73b8c707fac3b832f05ca474d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "ee_else_ce/boards/graphql/board.fragment.graphql"

query project_boards($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    boards {
      edges {
        node {
          ...BoardFragment
        }
      }
    }
  }
}