gitlab-org--gitlab-foss/app/assets/javascripts/boards/graphql/board_update.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

#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"
mutation UpdateBoard($input: UpdateBoardInput!) {
updateBoard(input: $input) {
board {
...BoardScopeFragment
}
errors
}
}