Exception: Graphiti::Errors::UnsupportedSort

Inherits:
Base
  • Object
show all
Defined in:
lib/graphiti/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(resource, attribute, allowlist, direction) ⇒ UnsupportedSort

Returns a new instance of UnsupportedSort.



136
137
138
139
140
141
# File 'lib/graphiti/errors.rb', line 136

def initialize(resource, attribute, allowlist, direction)
  @resource = resource
  @attribute = attribute
  @allowlist = allowlist
  @direction = direction
end

Instance Method Details

#messageObject



143
144
145
146
147
# File 'lib/graphiti/errors.rb', line 143

def message
  <<~MSG
    #{@resource.class.name}: tried to sort on attribute #{@attribute.inspect}, but passed #{@direction.inspect} when only #{@allowlist.inspect} is supported.
  MSG
end