Exception: Graphiti::Errors::ImplicitFilterTypeMissing
- Defined in:
- lib/graphiti/errors.rb
Instance Method Summary collapse
-
#initialize(resource_class, name) ⇒ ImplicitFilterTypeMissing
constructor
A new instance of ImplicitFilterTypeMissing.
- #message ⇒ Object
Constructor Details
#initialize(resource_class, name) ⇒ ImplicitFilterTypeMissing
Returns a new instance of ImplicitFilterTypeMissing.
497 498 499 500 |
# File 'lib/graphiti/errors.rb', line 497 def initialize(resource_class, name) @resource_class = resource_class @name = name end |
Instance Method Details
#message ⇒ Object
502 503 504 505 506 507 508 509 510 511 512 |
# File 'lib/graphiti/errors.rb', line 502 def <<~MSG Tried to add filter-only attribute #{@name.inspect}, but type was missing! If you are adding a filter that does not have a corresponding attribute, you must pass a type: filter :name, :string do <--- like this # ... code ... end MSG end |