Sha256: 3c4a38edb274359e835242a6fff11f476e82e45a949c9fb040f06926bdb9795a

Contents?: true

Size: 864 Bytes

Versions: 191

Compression:

Stored size: 864 Bytes

Contents

# frozen_string_literal: true
module GraphQL
  module StaticValidation
    class FragmentSpreadsArePossibleError < StaticValidation::Error
      attr_reader :type_name
      attr_reader :fragment_name
      attr_reader :parent_name

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

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

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

      def code
        "cannotSpreadFragment"
      end
    end
  end
end

Version data entries

191 entries across 191 versions & 2 rubygems

Version Path
graphql-2.1.0 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.27 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.26 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.25 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.24 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.23 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.22 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.21 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.20 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.17.2 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.17.1 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.19 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.18 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.17 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-1.13.19 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-1.13.18 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.16 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-1.13.17 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.15 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb
graphql-2.0.14 lib/graphql/static_validation/rules/fragment_spreads_are_possible_error.rb