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
Many backend frameworks allow multiple query parameters with the same key. For example ?sort=a,desc&sort=b,desc
?sort=a,desc&sort=b,desc
queryObject shoud be like this : { sort: ['a,desc', 'b,desc'] }
queryObject
{ sort: ['a,desc', 'b,desc'] }
Only one key is handled : { sort: 'a,desc' }
{ sort: 'a,desc' }
I propose the following PR : #80. Is that acceptable?
The text was updated successfully, but these errors were encountered:
Allow multiple key query parameters with same key, fix PolymerElement…
0723fd8
…s#79
No branches or pull requests
Description
Many backend frameworks allow multiple query parameters with the same key. For example
?sort=a,desc&sort=b,desc
Expected outcome
queryObject
shoud be like this :{ sort: ['a,desc', 'b,desc'] }
Actual outcome
Only one key is handled :
{ sort: 'a,desc' }
Proposition
I propose the following PR : #80.
Is that acceptable?
The text was updated successfully, but these errors were encountered: