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?