Class: Mutations::WorkItems::LinkedItems::Base

Inherits:
BaseMutation
  • Object
show all
Defined in:
app/graphql/mutations/work_items/linked_items/base.rb

Direct Known Subclasses

Add, Remove

Constant Summary collapse

MAX_WORK_ITEMS =

Limit maximum number of items that can be linked at a time to avoid overloading the DB

10

Constants inherited from BaseMutation

BaseMutation::ERROR_MESSAGE

Constants included from Gitlab::Graphql::Authorize::AuthorizeResource

Gitlab::Graphql::Authorize::AuthorizeResource::ConfigurationError, Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR

Instance Method Summary collapse

Methods inherited from BaseMutation

#api_user?, authorization, authorization_scopes, authorized?, authorizes_object?, #current_user, #errors_on_object, #load_application_object, #read_only?, #unauthorized_object

Methods included from Gitlab::Graphql::Authorize::AuthorizeResource

#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!

Instance Method Details

#ready?(**args) ⇒ Boolean

Returns:

  • (Boolean)


21
22
23
24
25
26
27
28
29
30
31
# File 'app/graphql/mutations/work_items/linked_items/base.rb', line 21

def ready?(**args)
  if args[:work_items_ids].size > MAX_WORK_ITEMS
    raise Gitlab::Graphql::Errors::ArgumentError,
      format(
        _('No more than %{max_work_items} work items can be modified at the same time.'),
        max_work_items: MAX_WORK_ITEMS
      )
  end

  super
end

#resolve(**args) ⇒ Object



33
34
35
36
37
38
39
40
41
42
# File 'app/graphql/mutations/work_items/linked_items/base.rb', line 33

def resolve(**args)
  work_item = authorized_find!(id: args.delete(:id))
  service_response = update_links(work_item, args)

  {
    work_item: work_item,
    errors: service_response[:status] == :error ? Array.wrap(service_response[:message]) : [],
    message: service_response[:status] == :success ? service_response[:message] : ''
  }
end