Ramya Devendiran
01/09/2024, 11:42 AMSebastiaan
01/09/2024, 11:54 AMquery.Execute(new QueryOptions(skip: 0, take: 5000)
?
I would recommend not getting all results at the same time, but if you must then this is a way. Instead, you can do a for / foreach loop through the pages you need and change the skip
and take
numbers on each loop.Ramya Devendiran
01/09/2024, 2:26 PM