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