Concept Flow - Query string parsing
Client sends URL with query string
Express receives request
Express parses URL
Extract query string part
Parse query string into key-value pairs
Make parsed query available as req.query
Route handler uses req.query values
Express takes the URL from the client, extracts the query string, parses it into an object, and makes it available as req.query for your code to use.