Hi all,
I am wanting to take the output of a select function that has come from an initial List Rows function, and pass it into another List Rows function, but am getting a 'Malformed XML' error back as the skip token is empty.
This is the code for the skip token:
if
(
empty
(
outputs('List_rows')?['body/@odata.nextLink']
),
'',
decodeUriComponent
(
last
(
split
(
uriQuery(outputs('List_rows')?['body/@odata.nextLink']),
'skiptoken='
)
)
)
)
I have read somewhere that the first List Rows function should produce a skip token but I am not able to get it to work properly.
Any help would be much appreciated.