Decodes a query from a URL-safe string.
Parses an encoded query string back into a Query object. The encoding format is auto-detected from the input string structure.
The encoded query string
The decoded query object
For "form" format, the decoder accepts both canonical and shorthand forms:
"form"
>=price=100
price>=100
name="widget"
name=widget
Tagged strings always require the canonical "value"@tag format.
"value"@tag
encodeQuery
Decodes a query from a URL-safe string.
Parses an encoded query string back into a Query object. The encoding format is auto-detected from the input string structure.