Sha256: c9a3b915c8901ddb587c66db1e6ed525f0f063a83b3efc98ec4911ca5090401e

Contents?: true

Size: 609 Bytes

Versions: 191

Compression:

Stored size: 609 Bytes

Contents

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

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

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

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

      def code
        "undefinedType"
      end
    end
  end
end

Version data entries

191 entries across 191 versions & 2 rubygems

Version Path
graphql-1.13.16 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.13 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.12 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-1.13.15 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.11 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-1.13.14 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-1.13.13 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.9 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.8 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.7 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql_cody-1.13.0 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-1.13.12 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.6 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.5 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.4 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.3 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-1.13.11 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.2 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-2.0.1 lib/graphql/static_validation/rules/fragment_types_exist_error.rb
graphql-1.13.10 lib/graphql/static_validation/rules/fragment_types_exist_error.rb