📄️ How to debug services via callbacks?
Use after result
📄️ How to find result parents?
Use Result#parents
📄️ How to find result step?
Use Result#step
📄️ How to access result attributes without checking its status?
Unsafe methods exist only to simplify the debugging process.
📄️ How to access result original service?
The Result#service method returns the service instance that created its result.
📄️ How to check whether the result comes from an unhandled exception?
The Result#fromunhandledexception? and Result#exception methods answer this question.
📄️ How to skip internal library frames in the debugger session?
First of all, let's visualize the problem using the minimal reproducible example.
📄️ How to call a method skipping its middlewares?
For some rare cases, it may be useful to have a way to call a method skipping all its middlewares.