Ryan Illman
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):  After the `GET` request fires to list the to-be-deleted records, the hook is run:  The hook does not...