We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This isssue assumes first the implementation of #1363
We are using typia.http.assertQuery in an API we are developing.
In a place we need to accept a custom attributes filter in the form of Record<string, string>
So a query like this:
type Query = { attrs: Record<string, string>, }
could be parsed from a string like this ?attrs[foo]=bar&attrs[baz]=das
?attrs[foo]=bar&attrs[baz]=das
And the parsing should correctly resolve to an object like this:
{ attrs: { foo: "bar", baz: "das", } }
That shape correctly match the expected format.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
This isssue assumes first the implementation of #1363
We are using typia.http.assertQuery in an API we are developing.
In a place we need to accept a custom attributes filter in the form of Record<string, string>
So a query like this:
could be parsed from a string like this
?attrs[foo]=bar&attrs[baz]=das
And the parsing should correctly resolve to an object like this:
That shape correctly match the expected format.
The text was updated successfully, but these errors were encountered: