Welcome to mirror list, hosted at ThFree Co, Russian Federation.

agent_connection_type.rb « kas « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c6321bece98c50d0a2660707949f369c38e5eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true

module Types
  module Kas
    # rubocop: disable Graphql/AuthorizeTypes
    class AgentConnectionType < BaseObject
      graphql_name 'ConnectedAgent'
      description 'Connection details for an Agent'

      field :connected_at,
            Types::TimeType,
            null: true,
            description: 'When the connection was established.'

      field :connection_id,
            GraphQL::Types::BigInt,
            null: true,
            description: 'ID of the connection.'

      field :metadata,
            Types::Kas::AgentMetadataType,
            method: :agent_meta,
            null: true,
            description: 'Information about the Agent.'

      def connected_at
        Time.at(object.connected_at.seconds)
      end
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end