Before you mark this as a duplicate, please understand that I was not able to get the explanations I was looking for from other answers.
If I was making an app that looked for a customer based on a URL id, what is the difference between saying customers/1234
and using req.params
and customers?id=1234
and using req.query
? What do the two url data methods do differently?