QueryKey Type
A discriminated union that represents the different types of query parameters that a URL can have
Union cases
Union case | Description |
|
Example/?name means that the URL can have the query parameter "name" Optional("name", String) |
|
Example/?name! means that the URL must have the query parameter "name" Required("name", String) |