10 lines
210 B
GraphQL
10 lines
210 B
GraphQL
#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"
|
|
|
|
mutation createBoard($input: CreateBoardInput!) {
|
|
createBoard(input: $input) {
|
|
board {
|
|
...BoardScopeFragment
|
|
}
|
|
errors
|
|
}
|
|
}
|