I have two tasks. The first task (Sample_Notebook) returns a JSON array (Input_List).
Sample data in Input_List
['key1':value1, 'key2':value2, 'key3':value3]
The second task is a "For Each" task that executes a notebook for each entry in the Input_List.
The number of Iterations are as expected and even the key/value pairs are showing fine in the job window. However,
I am not sure how to access each item within the Notebook of the second task.
The below command does not work properly
dbutils.jobs.taskValues.get(taskKey="Sample_Notebook",key="Input_List")
It simply throws the complete input for each iteration.
How to access the corresponding item of the iteration?