debian-mirror-gitlab/app/assets/javascripts/boards/graphql/board_create.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
139 B
GraphQL
Raw Normal View History

2021-03-08 18:12:59 +05:30
mutation createBoard($input: CreateBoardInput!) {
createBoard(input: $input) {
board {
id
webPath
}
errors
}
}