9 lines
139 B
GraphQL
9 lines
139 B
GraphQL
mutation createBoard($input: CreateBoardInput!) {
|
|
createBoard(input: $input) {
|
|
board {
|
|
id
|
|
webPath
|
|
}
|
|
errors
|
|
}
|
|
}
|