Exception: Graphiti::Errors::SideloadQueryBuildingError

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

Instance Method Summary collapse

Constructor Details

#initialize(resource_class, sideload_name) ⇒ SideloadQueryBuildingError

Returns a new instance of SideloadQueryBuildingError.



285
286
287
288
# File 'lib/graphiti/errors.rb', line 285

def initialize(resource_class, sideload_name)
  @resource_class = resource_class
  @sideload_name = sideload_name
end

Instance Method Details

#messageObject



290
291
292
293
294
295
296
297
298
299
300
301
302
303
# File 'lib/graphiti/errors.rb', line 290

def message
  "    \#{@resource_class.name}: error occurred while sideloading \"\#{@sideload_name}\"!\n\n    The error was raised while attempting to build the scope for the associated Resource.\n\n    Read more about sideload scoping here: www.graphiti.dev/guides/concepts/resources#customizing-scope\n\n    Here's the original, underlying error:\n\n    \#{cause.class.name}: \#{cause.message}\n    \#{cause.backtrace.join(\"\\n\")}\n  MSG\nend\n"