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