Hi!
I'm trying to loop over xml node and read each value in a structure like: (the actual structure is more complexe)
<main>
<records>
<year>2022</year>
</records>
<records>
<year>2021</year>
</records>
<records>
<year>2020</year>
</records>
</main>
How can I perform this in a for each? in order to read each value.
I ve tried for each XpathQueryResult to get the <records> and after that CurrentItem.children[0].value - but is not possible.
Please help!