I am using a Copy Data activity with a Source that is a REST API POST Method using body as a Kusto query. But while using POST method collection only 1000 record showing as a web page limourceitation.
[Source][1]
[Source Dataset][1]
And Sink dataset is SQL database
The REST API endpoint looks something like this:
{
"totalRecords": 2145,
"count": 1000,
"data": [
{
}
],
"facets": [],
"resultTruncated": "false",
"$skipToken": "ew0KICAiJGlkIjogIjEiLA0KICAiTWF4Um93cyI6IDEwMDAsDQogICJSb3dzVG9Ta2lwIjogMTAwMCwNCiAgIkt1c3RvQ2x1c3RlclVybCI6ICJodHRwczovL2FyZy13ZXUtdGhyZWUtc2YuYXJnLmNvcmUud2luZG93cy5uZXQiDQp9"
}
I know through powershell this is possible Like a Do-while loop until $skipToken is null, but in ADF not sure how to perform. Can anyone suggest a solution?