Closed adiman9 closed 6 years ago
I think this already works with the following syntax: Value(myPreviousRequest.datalist.0.id)
ahh ye, that would make sense actually. But it is really not the most intuitive way to having it work.
well, now both work 👍
disregard: <$ foo.bar.0.baz $> does not work <$ foo.bar[0]baz $> does not work <$ foo.bar[0]['baz'] $> does work <$ foo.bar[0].baz $> does work
I found that I had a use case where I needed to take an id from an object that was part of an array in a response and use that id to test the next endpoint.
I then wanted to be able to do this inside the next request:
This PR implements that functionality and allows for arbitrary nesting of arrays.