This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
Store the json list returned by an API consumed through the dynamic type input #646
Labels
🔨 improvement
Improvement in features
✨ feature
Suggest a new feature or enhancement to the Ritchie project
What I would like to see
Be able to store the Json list returned by an API consumed through the dynamic type input, to be able to use the list again to extract other variables from the list on another input, without having to consume the API more than one time.
Example
The following url
https://api.github.com/users/dennis
could return a list of the user repositories, as well as a list of branches for each repository.If I want to extract repositories names and branches names I would have to consume the URL twice as it is implemented now.
Why is it needed
Currently, if I want to extract different variables from the same list returned from an API, I would like to consume the API for each variable I want to extract.
This isn't very efficient in terms of performance, as the API response time could be quite long depending on the API consumed.
The text was updated successfully, but these errors were encountered: