I have a simple query to the database, sometimes it brings me the data and sometimes it doesn’t, I don’t know if it’s a server problem.
it is my code
DataQueryBuilder queryBuilder = DataQueryBuilder.Create();
AsyncCallback<IList<Dictionary<string, object>>> findCallback;
findCallback = new AsyncCallback<IList<Dictionary<string, object>>>(
foundObjects =>
{
print("Data");
print(JsonConvert.SerializeObject(foundObjects));
},
error =>
{
print("Server returned an error " + error.Message);
});
Backendless.Data.Of("Users").Find(queryBuilder, findCallback);
First execution
Second execution