9 lines
224 B
GraphQL
9 lines
224 B
GraphQL
#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"
|
|
|
|
query GroupBoard($fullPath: ID!, $boardId: ID!) {
|
|
workspace: group(fullPath: $fullPath) {
|
|
board(id: $boardId) {
|
|
...BoardScopeFragment
|
|
}
|
|
}
|
|
}
|