debian-mirror-gitlab/app/graphql/mutations/boards/create.rb

50 lines
1.4 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
module Mutations
module Boards
class Create < ::Mutations::BaseMutation
2021-01-29 00:20:46 +05:30
include Mutations::ResolvesResourceParent
2021-01-03 14:25:43 +05:30
graphql_name 'CreateBoard'
field :board,
Types::BoardType,
null: true,
description: 'The board after mutation.'
argument :name,
GraphQL::STRING_TYPE,
required: false,
description: 'The board name.'
argument :assignee_id,
GraphQL::STRING_TYPE,
required: false,
description: 'The ID of the user to be assigned to the board.'
argument :milestone_id,
2021-01-29 00:20:46 +05:30
Types::GlobalIDType[Milestone],
2021-01-03 14:25:43 +05:30
required: false,
description: 'The ID of the milestone to be assigned to the board.'
argument :weight,
GraphQL::BOOLEAN_TYPE,
required: false,
description: 'The weight of the board.'
argument :label_ids,
2021-01-29 00:20:46 +05:30
[Types::GlobalIDType[Label]],
2021-01-03 14:25:43 +05:30
required: false,
description: 'The IDs of labels to be added to the board.'
authorize :admin_board
def resolve(args)
2021-01-29 00:20:46 +05:30
board_parent = authorized_resource_parent_find!(args)
2021-01-03 14:25:43 +05:30
response = ::Boards::CreateService.new(board_parent, current_user, args).execute
{
board: response.payload,
errors: response.errors
}
end
end
end
end