Sha256: 3d2cca3f4205dd28cec84dede1ecadf45f6b770a8713e15cd62e15646a4559b4

Contents?: true

Size: 1.37 KB

Versions: 129

Compression:

Stored size: 1.37 KB

Contents

# frozen_string_literal: true
module GraphQL
  module StaticValidation
    class ArgumentLiteralsAreCompatibleError < StaticValidation::Error
      attr_reader :type_name
      attr_reader :argument_name
      attr_reader :argument
      attr_reader :value

      def initialize(message, path: nil, nodes: [], type:, argument_name: nil, extensions: nil, coerce_extensions: nil, argument: nil, value: nil)
        super(message, path: path, nodes: nodes)
        @type_name = type
        @argument_name = argument_name
        @extensions = extensions
        @coerce_extensions = coerce_extensions
        @argument = argument
        @value = value
      end

      # A hash representation of this Message
      def to_h
        if @coerce_extensions
          extensions = @coerce_extensions
          # This is for legacy compat -- but this key is supposed to be a GraphQL type name :confounded:
          extensions["typeName"] = "CoercionError"
        else
          extensions = {
            "code" => code,
            "typeName" => type_name
          }

          if argument_name
            extensions["argumentName"] = argument_name
          end
        end

        extensions.merge!(@extensions) unless @extensions.nil?
        super.merge({
          "extensions" => extensions
        })
      end

      def code
        "argumentLiteralsIncompatible"
      end
    end
  end
end

Version data entries

129 entries across 129 versions & 2 rubygems

Version Path
graphql-2.0.0 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.9 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.24 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.8 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.7 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.6 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.5 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.4 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.3 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.23 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.2 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.1 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.22 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.13.0 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.21 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.20 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.19 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.18 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.17 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb
graphql-1.12.16 lib/graphql/static_validation/rules/argument_literals_are_compatible_error.rb