The qs library supports a few very useful settings that determine how it generates the query string: https://github.com/ljharb/qs#stringifying. These include arrayFormat, indices, and encode. Since jsonapi-client uses qs for query string construction, it would be useful to allow us to pass in settings to qs as part of GET requests.
The
qs
library supports a few very useful settings that determine how it generates the query string: https://github.com/ljharb/qs#stringifying. These includearrayFormat
,indices
, andencode
. Sincejsonapi-client
usesqs
for query string construction, it would be useful to allow us to pass in settings toqs
as part of GET requests.