How to refresh a chained request? #1395
Unanswered
danielniccoli
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
Uh oh!
There was an error while loading. Please reload this page.
-
It seems like running a request in a chain does not send the previous requests. For example, with the requests below,
/getRandom
returns a random number and/confirm/{{randomNumber}}
simply returns whatever number you passed as{{randomNumber}}
.Running
@confirmRandom
would always return the same cached{{randomNumber}}
. Is there any way to force@confirmRandom
to always go through the entire chain to use fresh inputs, and not use any cached or previous responses as input?Beta Was this translation helpful? Give feedback.
All reactions