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

measurement_type.rb « instance_statistics « analytics « admin « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17a5af8d36b7e088399838e5cb456a3d6cb899d8 (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
# frozen_string_literal: true

module Types
  module Admin
    module Analytics
      module InstanceStatistics
        class MeasurementType < BaseObject
          include Gitlab::Graphql::Authorize::AuthorizeResource
          graphql_name 'InstanceStatisticsMeasurement'
          description 'Represents a recorded measurement (object count) for the Admins'

          authorize :read_instance_statistics_measurements

          field :recorded_at, Types::TimeType, null: true,
                description: 'The time the measurement was recorded.'

          field :count, GraphQL::INT_TYPE, null: false,
                description: 'Object count.'

          field :identifier, Types::Admin::Analytics::InstanceStatistics::MeasurementIdentifierEnum, null: false,
                description: 'The type of objects being measured.'
        end
      end
    end
  end
end