Hello Backendless,
Every Other call / Operations of Custom Server Code has been working Really well With Backendless. But , I wanted to modify the Query PArameter in custom Server Code .
I used this to do it :
finalWhereClause="original_poster.objectId IN ('B74024A0-23D8-E701-FF05-A8CE00C98C00','EC25F4BA-F315-3318-FF53-9389C34E7800')";
query.setWhereClause(finalWhereClause); //query object is recieved from the callback itself
It wasn’t working as I desired and When i checked the Query in After Find Event it gives me the same WhereClause of the Query as it was before : Like :
@Async
@Override
public void afterFind( RunnerContext context, BackendlessDataQuery query, ExecutionResult<BackendlessCollection<NewPost>> result ) throws Exception
{
// add your code here
System.out.println(query.getWhereClause());
}
Seems like i have done nothing Wrong literally With The Process , but Still I am getting this Error . What Might be the Reason behind it
P.S I am deploying Locally while I recieved this problem
Regards, Pujan