Is there a way to use fetch api from inside api route in NextJs? I have quite a big handler and instead of doing everything in one handler I would like to make it more modular so that after doing a job that is made for (file name el. write-to-db) I would like to call another handler eg (send-emails). Is it possible in NextJS?
Thanks!