Hello, is nested mapping possible with prefect ?
I am trying to do something like this,
1 First task returns a list.
2. Second task maps over list of first task and returns a list again.
3. Third task should map over each element of the list returned by 2nd task.
When I try this, 3rd task does not receive individual element from list of 2nd task but gets the list itself..