Hello
We have large document library with files and folders and metadata. total item count is about 44k.
We need to move some folders as per business logic as per the schrdule.
we are using get items action in power automate.
Get itemd has few filters and pagination threshold set to 100 and TOP parameter set to 50.
below is the behavior and hence confusion
1. When order by is Modified asc
We get 118 items returner
2. When order by is Modified desc
We get 100 items returned
and to make it more confusing when we add filter by hardcoding ID i.e. ID ge 30000 , we get zero results. but if we make it ID ge 35000 , we get 2037 results.
Top count is left blank and pagination set to 2000
So, what is happening here?
1. why do we get two different counts just on chage of ORDER BY
2. Why is TOP parameter not respected. (is it ignore when pagination is on?)
3. how is filter working. are items are returned first by pagination and then filtered OR filter is respected and then it gets those items from server side.
I did read number of articles but couldn't comprehend it.