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

sentry_error_tags_type.rb « error_tracking « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2b051998c5b86d3932156a840dc2105f63b5228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Types
  module ErrorTracking
    # rubocop: disable Graphql/AuthorizeTypes
    class SentryErrorTagsType < ::Types::BaseObject
      graphql_name 'SentryErrorTags'
      description 'State of a Sentry error'

      field :level, GraphQL::STRING_TYPE,
        null: true,
        description: "Severity level of the Sentry Error."
      field :logger, GraphQL::STRING_TYPE,
        null: true,
        description: "Logger of the Sentry Error."
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end