summaryrefslogtreecommitdiff
path: root/app/graphql/types/error_tracking/sentry_error_frequency_type.rb
blob: a44ca0684b6285f36a56187f8b3128d4207fc825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Types
  module ErrorTracking
    # rubocop: disable Graphql/AuthorizeTypes
    class SentryErrorFrequencyType < ::Types::BaseObject
      graphql_name 'SentryErrorFrequency'

      field :time, Types::TimeType,
        null: false,
        description: "Time the error frequency stats were recorded"
      field :count, GraphQL::INT_TYPE,
        null: false,
        description: "Count of errors received since the previously recorded time"
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end