Hi,
I'd like to make a new data source connection using REST to connect with our Azure storage table.
Thus far I have managed to get the connection setup, however pagination remains a issue.
When testing our connection and following the steps in the debug logging file I see that when a table has a next: "x-ms-continuation-NextPartitionKey” and "x-ms-continuation-NextRowKey” it will return this in the header (not the body). But if the table doesn't have this it will stop since the "x-ms-continuation-NextPartitionKey” header was not found.
As I am applying these pagination parameters as query parameter I need to be able to solve this issue.
Is there maybe a way to apply a default value to these variables (manipulating query doesn't work as the variable itself already won't be found) or some way to dynamically replace a URL?
Example table with no NextPartition/rowkey:


When variable value replaced with default:


Thanks for any input someone can provide.
Kind regards,
Robbert