Add this to make it writable:
app.use((req, res, next) => { Object.defineProperty(req, 'query', { ...Object.getOwnPropertyDescriptor(req, 'query'), value: req.query, writable: true }); });