Route
app.get('/pdf/:id', function(req, res) {
Request
GET http://localhost/pdf/123?option=456&clientId=789
I only get
req.query == { option: '456' }
req.params == { id: '123' }
How comes the second query parameter is cut off? My delimiter is a standard '&'