13 lines
231 B
GraphQL
13 lines
231 B
GraphQL
#import "ee_else_ce/boards/graphql/board.fragment.graphql"
|
|
|
|
query project_boards($fullPath: ID!) {
|
|
project(fullPath: $fullPath) {
|
|
boards {
|
|
edges {
|
|
node {
|
|
...BoardFragment
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|