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

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