What is a query string?
A Query string is a portion of the URL where data is sent across the application to the server.
e.g
https://localhost:3000/products?page=1&category=music
How do we write query string
URLs are stateless; they are not meant to ...