/api/items using defineCachedEventHandler which works great./api/items/<some-id> again using defineCachedEventHandler where I could fetch individually from my backend but the number of items is stable at ~200-300. I get the list of these in 1-2 api calls and after doing so my cache is warm./api/items/xxx -> calls /api/items to fetch the item as I am confident that 99.99% of the calls will already have a populated cache and if not this action would populate said cache./api will just invoke that but was hoping Nuxt and its defineCachedEventHandler could take care of this for me and I can just invoke one from another.