module GraphQL::Schema::Member::HasArguments::ArgumentObjectLoader

def load_application_object(argument, id, context)

def load_application_object(argument, id, context)
  # See if any object can be found for this ID
  if id.nil?
    return nil
  end
  object_from_id(argument.loads, id, context)
end