In which order does middleware process a response?
- A The same order as the request, top to bottom
- B Reverse order, bottom to top
- C Random order
- D Only the first middleware processes responses
Answer
Reverse order, bottom to top
Requests travel down the MIDDLEWARE list and responses travel back up, which matters when one middleware depends on another's output.





