Hey community,
I'm running a delta graph query against my AAD users. Idea is to get the users delta each day and store the DeltaLink in a sharepoint file or list - doesn't matter.
As I am getting multiple NextLinks in my flow I want to cycle through them with Do_until so I do get my DeltaLink for running the flow on the next day again.
Can't use pagination in HTTP with delta as this results in a NULL response from the HTTP action. Thats why I want to cycle through the NextLinks
After running the http request I parse the output in JSON. I want to fill a variable with NextLink to start my cycle.
However the value of the variable is NULL when running the flow although the HTTP request and the parse JSON do contain the NextLink Data.
The flow

The variable is of type string, the NextLink Uri is about 10.000 characters so it doesn't run against any limitations.
(The URI can be manually stored in a variable and run without problems)
I have used the HTTP output (body) from this flow as the payload for creating the JSON. So I assume thats not the problem.

Input and Output of analyse JSON do contain the NextLink

The variable will not be filled with data.

The result -> Value = NULL

Whats going on? 😕
Thanks
Dirk