Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Azure by (17.6k points)

Inside Azure data factory I make a call to microsoft graph using a REST copy operation that uses rest to get a service access token. The Graph api returns max 200 results, so I'm interested in using the pagination rules that the source can make. I can see in postman that my response structure is

{
   "@odata.context" : <some context>,
   "@odata.nextLink" : <the link to next page>
   "value" : [<the response data on current page>]
}

From this documentation, I have read that we can set the pagination rules by adding the key

AbsoluteUrl

and then the path to the next page given in the response as the value. How do i tell azure data factory how to find this?

1 Answer

0 votes
by (47.2k points)
edited by

Because your response is a json structure, the value of

AbsoluteUrl

should be 

$['@odata.nextLink']

You can check out Azure Data Factory Course which will help you to upgrade your skills in Azure Data Factory. 

Browse Categories

...