gitlab-org--gitlab-foss/app/graphql/types/error_tracking/sentry_error_tags_type.rb

20 lines
549 B
Ruby

# 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::Types::String,
null: true,
description: "Severity level of the Sentry Error."
field :logger, GraphQL::Types::String,
null: true,
description: "Logger of the Sentry Error."
end
# rubocop: enable Graphql/AuthorizeTypes
end
end