13 lines
197 B
GraphQL
13 lines
197 B
GraphQL
query project_recent_boards($fullPath: ID!) {
|
|
project(fullPath: $fullPath) {
|
|
id
|
|
recentIssueBoards {
|
|
edges {
|
|
node {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|