summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/group_boards.query.graphql
blob: 0823c4f5a837bf12cdbd271c17f129a74bac23b5 (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 group_boards($fullPath: ID!) {
  group(fullPath: $fullPath) {
    id
    boards {
      edges {
        node {
          ...BoardFragment
        }
      }
    }
  }
}