The [`TParams`](https://github.com/certego/django-rest-client/blob/42be9515ad5c22d49666cd1927c81924f7041c97/django_rest_client/types.py#L15) fields of type `list` are being serialized by `request` pkg as ``` ?fields=a&fields=b&fields=c ``` instead of ``` ?fields=a,b,c ``` which we want.
The
TParamsfields of typelistare being serialized byrequestpkg asinstead of
which we want.