2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Boards
|
|
|
|
class Update < ::Mutations::BaseMutation
|
|
|
|
graphql_name 'UpdateBoard'
|
|
|
|
|
|
|
|
include Mutations::Boards::CommonMutationArguments
|
|
|
|
|
|
|
|
argument :id,
|
|
|
|
::Types::GlobalIDType[::Board],
|
|
|
|
required: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: 'Board global ID.'
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
field :board,
|
|
|
|
Types::BoardType,
|
|
|
|
null: true,
|
2021-10-27 15:23:28 +05:30
|
|
|
description: 'Board after mutation.'
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
authorize :admin_issue_board
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
def resolve(id:, **args)
|
|
|
|
board = authorized_find!(id: id)
|
|
|
|
|
|
|
|
::Boards::UpdateService.new(board.resource_parent, current_user, args).execute(board)
|
|
|
|
|
|
|
|
{
|
|
|
|
board: board,
|
|
|
|
errors: errors_on_object(board)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
private
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
def find_object(id:)
|
|
|
|
# TODO: remove this line when the compatibility layer is removed
|
|
|
|
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
|
|
|
|
id = ::Types::GlobalIDType[::Board].coerce_isolated_input(id)
|
|
|
|
GitlabSchema.find_by_gid(id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
Mutations::Boards::Update.prepend_mod_with('Mutations::Boards::Update')
|