Replies: 2 comments 3 replies
-
You could either use a |
Beta Was this translation helpful? Give feedback.
-
I saw that it is possible to do: let req = client
.get(format!("/api/known-issues?id={}", encoded_id));
println!("{:?}", req);
let inner_req = req.inner(); and then
How is it possible? Why is it empty despite the fact that I pass query params? (and presumably the missing |
Beta Was this translation helpful? Give feedback.
-
Hi,
If I have an endpoint like:
Is there a way that I can access the request's query parameter values that were sent? Basically I want to test that if I don't pass the
only_first
flag (which is a boolean) then it defaults to false.Beta Was this translation helpful? Give feedback.
All reactions