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

sentry_error_stack_trace_context_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: d4b806c4e1e57ea975d3de200718e37f17ac296c (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
27
28
29
# frozen_string_literal: true

module Types
  module ErrorTracking
    # rubocop: disable Graphql/AuthorizeTypes
    class SentryErrorStackTraceContextType < ::Types::BaseObject
      graphql_name 'SentryErrorStackTraceContext'
      description 'An object context for a Sentry error stack trace'

      field :code,
            GraphQL::Types::String,
            null: false,
            description: 'Code number of the context.'
      field :line,
            GraphQL::Types::Int,
            null: false,
            description: 'Line number of the context.'

      def line
        object[0]
      end

      def code
        object[1]
      end
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end