gitlab-org--gitlab-foss/app/assets/javascripts/boards/graphql/group_recent_boards.query.g...

15 lines
252 B
GraphQL

#import "ee_else_ce/boards/graphql/board.fragment.graphql"
query group_recent_boards($fullPath: ID!) {
group(fullPath: $fullPath) {
id
recentIssueBoards {
edges {
node {
...BoardFragment
}
}
}
}
}