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

module Types
  module ErrorTracking
    class SentryErrorStackTraceType < ::Types::BaseObject
      graphql_name 'SentryErrorStackTrace'
      description 'An object containing a stack trace entry for a Sentry error'

      authorize :read_sentry_issue

      field :issue_id, GraphQL::Types::String,
            null: false,
            description: 'ID of the Sentry error.'
      field :date_received, GraphQL::Types::String,
            null: false,
            description: 'Time the stack trace was received by Sentry.'
      field :stack_trace_entries, [Types::ErrorTracking::SentryErrorStackTraceEntryType],
            null: false,
            description: 'Stack trace entries for the Sentry error.'
    end
  end
end