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