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