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