Skip to content

v0.0.16

Compare
Choose a tag to compare
@TouchSek TouchSek released this 19 Feb 17:31
aa47b9b

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
}