Class: Mutations::CustomerRelations::Organizations::Update

Inherits:
BaseMutation
  • Object
show all
Includes:
ResolvesIds
Defined in:
app/graphql/mutations/customer_relations/organizations/update.rb

Constant Summary

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 included from ResolvesIds

#resolve_ids

Methods inherited from BaseMutation

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

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

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

Instance Method Details

#resolve(args) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'app/graphql/mutations/customer_relations/organizations/update.rb', line 41

def resolve(args)
  organization = ::Gitlab::Graphql::Lazy.force(
    GitlabSchema.object_from_id(args.delete(:id),
      expected_type: ::CustomerRelations::Organization)
  )
  raise_resource_not_available_error! unless organization

  group = organization.group
  authorize!(group)

  result = ::CustomerRelations::Organizations::UpdateService.new(
    group: group,
    current_user: current_user,
    params: args
  ).execute(organization)
  { organization: result.payload, errors: result.errors }
end