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

15 lines
256 B
GraphQL

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