I need to export all data from data service entity to a csv file. The activity “query data service” only allows max of 1000 records. So, every time the activity is called it only fetches the same 1000 records. I need to export all data from the data service to a csv file.
You have a start field in proeprties which would help you skip the records as well…specify 1000 there and you would see the records from 1001 to 2000 would return…
Maintain a counter to know how many items to skip so that in loop you can get all the items
Cheers
1 Like