class GraphQL::LoadApplicationObjectFailedError
@see GraphQL::Schema::Member::HasArguments::ArgumentObjectLoader#load_application_object_failed, A hook which you can override in resolvers, mutations and input objects.
but no object is loaded for that ID.
Raised when a argument is configured with ‘loads:` and the client provides an `ID`,
def initialize(argument:, id:, object:, context:)
def initialize(argument:, id:, object:, context:) @id = id @argument = argument @object = object @context = context super("No object found for `#{argument.graphql_name}: #{id.inspect}`") end