Sha256: 0726f17b188472e63e02715d7f4d00f488e91b15d1a03aada8fbdcd9baaf9395

Contents?: true

Size: 595 Bytes

Versions: 10

Compression:

Stored size: 595 Bytes

Contents

# frozen_string_literal: true

module Gitlab
  module QA
    module SystemLogs
      module LogTypes
        module Rails
          class GraphqlLog < Log
            include SharedFields::Meta

            def initialize(data)
              super('Rails GraphQL', data)
            end

            def summary_fields
              super.concat(
                [
                  :operation_name,
                  :query_string,
                  :variables
                ],
                meta_fields
              )
            end
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
gitlab-qa-10.3.0.1 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.6.0 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.5.0 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.4.1 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.4.0 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.3.0 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.2.2 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.2.1 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.2.0 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb
gitlab-qa-10.1.0 lib/gitlab/qa/system_logs/log_types/rails/graphql_log.rb