From a @Route.register function we can return False in order to quit silently without raising a RuntimeError, but from a @Resolver.register function, even if we return False CodeQuick raise an exception.
Is there a way to exit from a @Resolver.register function explicitly without raising an error like in a @Route.register function with a return False?
From a @Route.register function we can
return False
in order to quit silently without raising a RuntimeError, but from a @Resolver.register function, even if we return False CodeQuick raise an exception.Is there a way to exit from a @Resolver.register function explicitly without raising an error like in a @Route.register function with a
return False
?Thank you!
cc @wwark