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

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

query group_boards($fullPath: ID!) {
  group(fullPath: $fullPath) {
    boards {
      edges {
        node {
          ...BoardFragment
        }
      }
    }
  }
}