Forum Discussion
CalexUK
Aug 30, 2022Copper Contributor
Rest API @odata.nextLink disappears when I apply a $filter ?
I am building a pipeline from a Rest api, if I run the request I get the @odata.nextLink so can apply pagination OK.
If I apply a $filter this @odata.nextLink disappears from the Body so cannot apply pagination any idea's ?
No Filter Applied
With filter I lose the @odata.nextLink pagination information
1 Reply
- sherwinzxwCopper ContributorHi Calex,
Seems the API has a default page size set to 1000.
If there is only one page of response, then certainly the pagination will be skipped.
I bet if you change the filter to 'id lt 1002' and you will see the pagination link pop again.
However, I am curious what's the real problem here that troubles you, without this pagination prop?