Sha256: 2fc6d05a03b2577313adecbc7fc0f151c32354f0fbc30e773e5ebfb78b7cd843

Contents?: true

Size: 800 Bytes

Versions: 8

Compression:

Stored size: 800 Bytes

Contents

# frozen_string_literal: true
module GraphQL
  class UnauthorizedFieldError < GraphQL::UnauthorizedError
    # @return [Field] the field that failed the authorization check
    attr_reader :field

    def initialize(message = nil, object: nil, type: nil, context: nil, field: nil)
      if message.nil? && [field, type].any?(&:nil?)
        raise ArgumentError, "#{self.class.name} requires either a message or keywords"
      end

      @field = field
      message ||= begin
        if object
          "An instance of #{object.class} failed #{type.name}'s authorization check on field #{field.name}"
        else
          "Failed #{type.name}'s authorization check on field #{field.name}"
        end
      end
      super(message, object: object, type: type, context: context)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
graphql-1.9.4 lib/graphql/unauthorized_field_error.rb
graphql-1.9.3 lib/graphql/unauthorized_field_error.rb
graphql-1.9.2 lib/graphql/unauthorized_field_error.rb
graphql-1.9.1 lib/graphql/unauthorized_field_error.rb
graphql-1.9.0 lib/graphql/unauthorized_field_error.rb
graphql-1.9.0.pre4 lib/graphql/unauthorized_field_error.rb
graphql-1.9.0.pre3 lib/graphql/unauthorized_field_error.rb
graphql-1.9.0.pre2 lib/graphql/unauthorized_field_error.rb