v0.0.16
Release Note
Query string will be able to accept as object in PR #15
Example:
https://my-web-url.com?search[name]=touch&search[active]=true&page[offset]=1&page[limit]=10&categoryId=6
Data response from query string as:
{
search: {
name: 'touch',
active: true
},
page: {
offset: 1,
limit: 10
},
categoryId: 6
}