Backendless API documentation incorrect?

38 views Asked by At

Here is the code:

let queryBuilder = DataQueryBuilder()
queryBuilder.setWhereClause(whereClause: "age = 47")   <---but this doesn't exist in the code.

The "setWhereClause" is not a member of queryBuilder. Is there updated documentation somewhere? is there something wrong in my pod? I just verified I have the latest version.

1

There are 1 answers

0
david dt On

I got it to work with this statement:

queryBuilder.whereClause = "age = '47'"

I wish they would update their tuts.