queryParams
The query parameters of a URL, if any.
For example:
/users/posts?user=123&post=11
Content copied to clipboard
will generate a mapping of "user" to 123 and "post" to 11.
Note that you are generally encouraged to use params instead. However, this property is provided for cases where perhaps you want to explicitly exclude dynamic route params from the list of results, or you want to make sure you get the query param value even if an identically named dynamic route param exists.