Sha256: 4d15a65398b4de4f26e1629fbcb0ed4b0155b45201234b37db3558904d8d8b9a

Contents?: true

Size: 885 Bytes

Versions: 134

Compression:

Stored size: 885 Bytes

Contents

# frozen_string_literal: true
module GraphQL
  module StaticValidation
    class ArgumentsAreDefinedError < StaticValidation::Error
      attr_reader :name
      attr_reader :type_name
      attr_reader :argument_name
      attr_reader :parent

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

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

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

      def code
        "argumentNotAccepted"
      end
    end
  end
end

Version data entries

134 entries across 134 versions & 2 rubygems

Version Path
graphql-1.13.18 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.16 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-1.13.17 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.15 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.14 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-1.13.16 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.13 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.12 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-1.13.15 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.11 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-1.13.14 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-1.13.13 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.9 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.8 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.7 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql_cody-1.13.0 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-1.13.12 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.6 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.5 lib/graphql/static_validation/rules/arguments_are_defined_error.rb
graphql-2.0.4 lib/graphql/static_validation/rules/arguments_are_defined_error.rb