Sha256: 30b9010cd4a47f8f17e790747087a1dab2743e752e990cf04a1b03a876e59824

Contents?: true

Size: 665 Bytes

Versions: 191

Compression:

Stored size: 665 Bytes

Contents

# frozen_string_literal: true
module GraphQL
  module StaticValidation
    class FragmentsAreOnCompositeTypesError < StaticValidation::Error
      attr_reader :type_name
      attr_reader :argument_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
        "fragmentOnNonCompositeType"
      end
    end
  end
end

Version data entries

191 entries across 191 versions & 2 rubygems

Version Path
graphql-2.3.7 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.3.6 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.3.5 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.0.31 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.3.2 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.3.1 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-1.13.23 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.3.0 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.14 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.13 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.12 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.0.29 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.1.12 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-1.13.22 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.11 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.10 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.9 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.8 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.7 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb
graphql-2.2.6 lib/graphql/static_validation/rules/fragments_are_on_composite_types_error.rb