10 lines
139 B
GraphQL
10 lines
139 B
GraphQL
|
mutation UpdateBoard($input: UpdateBoardInput!) {
|
||
|
updateBoard(input: $input) {
|
||
|
board {
|
||
|
id
|
||
|
webPath
|
||
|
}
|
||
|
errors
|
||
|
}
|
||
|
}
|