13 lines
179 B
GraphQL
13 lines
179 B
GraphQL
query project_boards($fullPath: ID!) {
|
|
project(fullPath: $fullPath) {
|
|
id
|
|
boards {
|
|
edges {
|
|
node {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|