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

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