Sha256: e573f22e68b7ae3d9bc1968aa1eb4bdfcfdebb4d015838fb013cf8e2b282dd8d

Contents?: true

Size: 717 Bytes

Versions: 196

Compression:

Stored size: 717 Bytes

Contents

# frozen_string_literal: true
module GraphQL
  module StaticValidation
    class FieldsAreDefinedOnTypeError < StaticValidation::Error
      attr_reader :type_name
      attr_reader :field_name

      def initialize(message, path: nil, nodes: [], type:, field:)
        super(message, path: path, nodes: nodes)
        @type_name = type
        @field_name = field
      end

      # A hash representation of this Message
      def to_h
        extensions = {
          "code" => code,
          "typeName" => type_name,
          "fieldName" => field_name
        }

        super.merge({
          "extensions" => extensions
        })
      end

      def code
        "undefinedField"
      end
    end
  end
end

Version data entries

196 entries across 196 versions & 2 rubygems

Version Path
graphql-2.4.9 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.8 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.7 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.6 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.5 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.4 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.3 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.2 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.1 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.4.0 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.20 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.19 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.18 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.17 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.16 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.15 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.14 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.13 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.12 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb
graphql-2.3.11 lib/graphql/static_validation/rules/fields_are_defined_on_type_error.rb