Changed
* Removed super from CollectionModelResource.
* Added `query_string` for multiple values. Axios, for example, uses a notation such as `('statusId[]', '0'), ('statusId[]`. To accommodate that the query string looks for variables ending with `[]` and converts a query to search for values in a list.
An example of the following styles for query strings with arrays are now supported:
statusId[]=1&statusId[]=2&owner_id=1
statusId=[1,2]&owner_id=1
statusId=1&statusId=2&owner_id=1
statusId=1,2&owner_id=1&debug=false