I'm trying to crawl the changesets from a TFS 2015 server via the API. I'm using the $top
and $skip
parameters to do the paging as documented. However some odd behaviours are occurring:
- Requesting 255 items returns all 255. Requesting 256 and above only returns 132.
- The Link HTTP header is not included in the response for the second page - preventing automatic crawling.
- Manually incrementing the
$skip
parameter in a browser returns zero items.
Is it possible to page items via the API or does TFS place limitations to prevent it?