Splits the data set into N partitions.
This should NOT be used for frontend applications.
Partitions are formatted as n/m, where n is the index of the parititon, and m is the total number or partitions.
i.e. 20 partitions would have one request with partition: 1/20, then another partition: 2/20 and so on.
You need to use autoPagingToArray(...) on each partition in order to receive all the data.
Splits the data set into N partitions. This should NOT be used for frontend applications. Partitions are formatted as
n/m, wherenis the index of the parititon, andmis the total number or partitions. i.e. 20 partitions would have one request withpartition: 1/20, then anotherpartition: 2/20and so on. You need to useautoPagingToArray(...)on each partition in order to receive all the data.