Hi , there is a query limit for retrived records.
I can retryve only 10 record for evry query
Hi , there is a query limit for retrived records.
I can retryve only 10 record for evry query
Hi Capitano,
You can use query.setPageSize(INT) method to set the number of records you’d like to retrieve (max is 100). Here is the related doc page: https://backendless.com/docs/android/doc.html#data-query
If you need more than 100 objects, you can retrieve the next pages by using query.setOffset(INT).
Thnks i got the solution