14 lines
252 B
GraphQL
14 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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|