Unable to retrieve large data sets

AppId - 55F928E7-9D6E-937F-FF72-80924AE09B00
Since today, I have been unable to retrieve large data set.

Backendless.Data.of(doctorlist.class).find(queryBuilder, new AsyncCallback<List>() {
@Override
public void handleResponse(List response)
{
List temp = response;
Toast.makeText(DailyReporting1.this, “”+temp.size(), Toast.LENGTH_SHORT).show();
showProgress(false);
}

        @Override
        public void handleFault(BackendlessFault fault)
        {
            Toast.makeText(DailyReporting1.this, "Error :"+fault.getMessage(), Toast.LENGTH_SHORT).show();
            showProgress(false);

        }
    });

I was using Application class to get the response before. Since today I am getting this error. My code works fine when the data record is less than 300.

Hi Pranav
Thanks for your report
Could you check it now?

Regards, Vlad

Yes its working now. Thanks Vladimir.