Class: Resolvers::BranchCommitResolver
- Inherits:
-
BaseResolver
- Object
- GraphQL::Schema::Resolver
- BaseResolver
- Resolvers::BranchCommitResolver
- Defined in:
- app/graphql/resolvers/branch_commit_resolver.rb
Instance Method Summary collapse
Methods inherited from BaseResolver
as_single, authorization, authorized?, before_connection_authorization, before_connection_authorization_block, calculate_ext_conn_complexity, calls_gitaly!, calls_gitaly?, complexity, complexity_multiplier, #current_user, last, #object, #offset_pagination, requires_argument!, 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!
Instance Method Details
#resolve(**args) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/graphql/resolvers/branch_commit_resolver.rb', line 9 def resolve(**args) commit = branch&.dereferenced_target return unless commit lazy_project = BatchLoader::GraphQL.for(commit.repository.gl_project_path).batch do |paths, loader| paths.each { |path| loader.call(path, Project.find_by_full_path(path)) } end ::Gitlab::Graphql::Lazy.with_value(lazy_project) do |project| ::Commit.new(commit, project) if project end end |