I have for example this:
First ( First( First(allData).input ).myData ).Value
and I get 10 items which is totally fine. But I would like to select just the 5th item , how can I do it?
I tried something like this
First ( First( First(allData).input ).myData ).Value[4] or so but does not work....
any help? Is it possible this what I am trying?