summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/project_recent_boards.query.graphql
blob: 4d38e9b0498ee699d603ae1687c10d1951afda13 (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 project_recent_boards($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    recentIssueBoards {
      edges {
        node {
          ...BoardFragment
        }
      }
    }
  }
}