
Hi all,
I am working on a flow using the List Rows function in multiple places.
For some reason the first List Row function is not providing a skip token for the second List Row function.
This is the code I am using the generate the skip token from the first List Row function:
if
(
empty
(
outputs('List_rows')?['body/@odata.nextLink']
),
'',
decodeUriComponent
(
last
(
split
(
uriQuery(outputs('List_rows')?['body/@odata.nextLink']),
'skiptoken='
)
)
)
)
Any help would be much appreciated.
TIA