params

Params extracted either from the URL's query parameters OR from a dynamic route

For example:

/users/posts?user=123&post=11

and/or

/users/123/posts/11

# for a URL registered as "/users/{user}/posts/{post}"

will generate a mapping of "user" to 123 and "post" to 11.

If the same key is specified in both the query parameters and the dynamic route, the dynamic route will take precedence.