Ryan Illman

Results 2 comments of Ryan Illman

The minimum I need to see the issue is just a console.warn: ``` const afterHook = (originalResponse, _request, _context) => { console.warn('in bulkDelete After Hook'); return originalResponse }; ```

Before running bulk delete (console output is on the left): ![image](https://user-images.githubusercontent.com/7374667/204928085-d1776721-4097-474a-bcdc-f16927636d80.png) After the `GET` request fires to list the to-be-deleted records, the hook is run: ![image](https://user-images.githubusercontent.com/7374667/204928111-95716423-f28a-4057-9526-901d194ec92c.png) The hook does not...