Class: Resolvers::ProjectResolver

Inherits:
BaseResolver
  • Object
show all
Includes:
FullPathResolver
Defined in:
app/graphql/resolvers/project_resolver.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from FullPathResolver

#model_by_full_path

Methods inherited from BaseResolver

as_single, authorization, authorized?, before_connection_authorization, before_connection_authorization_block, calculate_ext_conn_complexity, calls_gitaly!, complexity, #current_user, field_options, last, #object, #offset_pagination, requires_argument!, resolver_complexity, #select_result, single, #single?, single_definition_blocks, singular_type, when_single

Methods included from Gitlab::Utils::Override

#extended, extensions, #included, #method_added, #override, #prepended, #queue_verification, verify!

Class Method Details

.complexity_multiplier(args) ⇒ Object



13
14
15
# File 'app/graphql/resolvers/project_resolver.rb', line 13

def self.complexity_multiplier(args)
  0
end

Instance Method Details

#resolve(full_path:) ⇒ Object



9
10
11
# File 'app/graphql/resolvers/project_resolver.rb', line 9

def resolve(full_path:)
  model_by_full_path(Project, full_path)
end