summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/group_boards.query.graphql
blob: feafd6ae10d4ba4476fdf58b482b202cb1c4499b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "ee_else_ce/boards/graphql/board.fragment.graphql"

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