Class: Resolvers::Kas::AgentConnectionsResolver

Inherits:
BaseResolver
  • Object
show all
Defined in:
app/graphql/resolvers/kas/agent_connections_resolver.rb

Constant Summary

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 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!

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

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

Instance Method Details

#resolveObject



12
13
14
15
16
17
18
19
20
21
22
# File 'app/graphql/resolvers/kas/agent_connections_resolver.rb', line 12

def resolve
  return [] unless can_read_connected_agents?

  BatchLoader::GraphQL.for(agent.id).batch(default_value: []) do |agent_ids, loader|
    agents = get_connected_agents(agent_ids).group_by(&:agent_id)

    agents.each do |agent_id, connections|
      loader.call(agent_id, connections)
    end
  end
end