Sha256: b64655b70a5ae8d6f759e2de3e155caa95cfd3a713afe2487d9941072083c23b

Contents?: true

Size: 604 Bytes

Versions: 140

Compression:

Stored size: 604 Bytes

Contents

# frozen_string_literal: true
module GraphQL
  module StaticValidation
    class InputObjectNamesAreUniqueError < StaticValidation::Error
      attr_reader :name

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

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

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

      def code
        "inputFieldNotUnique"
      end
    end
  end
end

Version data entries

140 entries across 140 versions & 2 rubygems

Version Path
graphql-1.13.16 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.13 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.12 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-1.13.15 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.11 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-1.13.14 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-1.13.13 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.9 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.8 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.7 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql_cody-1.13.0 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-1.13.12 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.6 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.5 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.4 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.3 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-1.13.11 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.2 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-2.0.1 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb
graphql-1.13.10 lib/graphql/static_validation/rules/input_object_names_are_unique_error.rb