Hi.
I have to create POST for fetching items (problem with query parameters length).
But I can't assign POST request to list.fetch epilogue action.
Can I do this somehow?
Or is it possible to run epilogue workflow from my custom route?
Something like:
app.post(`/api/getItems`, (req, res, next) => {
req.query = req.body;
itemsEpilogueResource.list(req, res); // or some other hack
});