Hello,
I’m currently working with Swift to migrate my app from Parse to Backendless and I’m facing a problem. In my app I have to retrieve all the objects created by the user. What I did with parse looked like that :
let query = PFQuery(className:"events")
query.whereKey("eventCreator", equalTo:currentUser!)
When I follow your documentation and try to do the same with Backendless, I get the following error « Invalid where clause »
Here is what my code look like :
let currentUser = backendless.userService.currentUser
let whereClause = "eventCreator = \(currentUser)"
So my question is : Is it possible to compare a relation with an object like the current user ?
Thanks !