You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently when using ListRequestOptions, our pattern is to use a bunch of repetitive code to set the query params for each individual request, over and over ad nauseum. Example:
This happens over and over, but we use the same ListRequestOptions, so all options are already held internally.
Describe the solution you'd like
Instead of being repetitive, we should build the ListRequestOptions in such a way that it knows how to build it's own query string and that string is then appended to the request URI.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently when using
ListRequestOptions
, our pattern is to use a bunch of repetitive code to set the query params for each individual request, over and over ad nauseum. Example:This happens over and over, but we use the same
ListRequestOptions
, so all options are already held internally.Describe the solution you'd like
Instead of being repetitive, we should build the
ListRequestOptions
in such a way that it knows how to build it's own query string and that string is then appended to the request URI.The text was updated successfully, but these errors were encountered: