I have 10851 records in Data Service want to retrieve all data through Query but giving only 1000 records
It is the limitation
You need to create a loop and skip the retreived once and retrieve remaining till completed
For that follow below…create a counter variable and initialize with 0
- Do while
- Get records and in skip give the counter
- Assign and
counter = counter + records.count
4 use one more assign to merge the records mrgedrecords = mergedrecords.concat(records) - In condition use records.count=1000
Create variables appropriately
Cheers
After using Query Entity Records activity and check Total Records value. It will give output as Total number of matching records value count. If it is greater than 1000 then you can use one more Query Entity Records activity and skip first 1000 records as you already retrieved it and also append this output to previous output.
Hope it helps!!