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