Change the bool serialization of a query parameter #308
Unanswered
santhoshramaraj
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For the below snippet with a boolean query parameter, the URI is serialized into
.../data?descending=False
but my server endpoint expects it to be
.../data?descending=false
i.e., all lower casefalse
ortrue
How to extend Uplink to achieve the above? as a temporary workaround, I am treating
descending
asstr
Beta Was this translation helpful? Give feedback.
All reactions