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.

11 lines
210 B
GraphQL
Raw Normal View History

2022-07-23 23:45:48 +05:30
#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"
2021-03-08 18:12:59 +05:30
mutation createBoard($input: CreateBoardInput!) {
createBoard(input: $input) {
board {
2022-07-23 23:45:48 +05:30
...BoardScopeFragment
2021-03-08 18:12:59 +05:30
}
errors
}
}