queryStringParameters
A query string is a part of a uniform resource locator (URL) that assigns values to certain parameters. The query string is an ordered list of key-value pairs, where each key-value pair consists of a parameter name (key) and a value. These pairs are separated by ampersands (&) and the entire query string is appended to the URL after a question mark (?).
For example, in the URL http://www.example.com/search?q=wiki&sort=asc, "q" is a key with the value "wiki", and "sort"
Query string parameters are commonly used to pass data to a web server. This data can be
The format of query string parameters is not strictly defined, but the key-value pair structure separated by