Sha256: 7d406c2fedc901917421ae9aaca33a4670112b686534df66abfe5d267360f327

Contents?: true

Size: 762 Bytes

Versions: 212

Compression:

Stored size: 762 Bytes

Contents

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

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

      # A hash representation of this Message
      def to_h
        extensions = {
          "code" => code,
          "nodeName" => node_name
        }.tap { |h| h["typeName"] = type_name unless type_name.nil? }

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

      def code
        "selectionMismatch"
      end
    end
  end
end

Version data entries

212 entries across 212 versions & 2 rubygems

Version Path
graphql-2.4.15 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-1.11.12 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.14 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.3.22 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.1.15 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-1.11.11 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-1.12.25 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-1.13.24 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.0.32 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.1.14 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.2.17 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.3.21 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.13 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.12 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.11 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.10 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.9 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.8 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.7 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb
graphql-2.4.6 lib/graphql/static_validation/rules/fields_have_appropriate_selections_error.rb