Error Code 1025

i try this code and get the error :

$query = new BackendlessDataQuery();
$query->setPageSize(1000);
$data=Backendless::$Data->of(‘Mall’)->find($query)->getAsObject();
dd($data);

does that mean i can’t get more than 100 objects in single request?

already got the answer, but how to get more data example i have 300 data in 1 table and i want to call all of it in PHP? is it any solution for this?

regards,
Wendy

Hi Wendy,

The most Backendless will return is 100 objects at a time. You need to make additional request to return more.

Regards,
Mark