Class: Mutations::Branches::Create

Inherits:
Mutations::BaseMutation show all
Includes:
FindsProject
Defined in:
app/graphql/mutations/branches/create.rb

Constant Summary

Constants inherited from Mutations::BaseMutation

Mutations::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 Mutations::BaseMutation

#api_user?, authorization, 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(project_path:, name:, ref:) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
# File 'app/graphql/mutations/branches/create.rb', line 30

def resolve(project_path:, name:, ref:)
  project = authorized_find!(project_path)

  result = ::Branches::CreateService.new(project, current_user)
             .execute(name, ref)

  {
    branch: (result[:branch] if result[:status] == :success),
    errors: Array.wrap(result[:message])
  }
end