Hi,
I cannot remove a row from my collection using any of the methods provided in the php documentation.
I am able to get my row by object and return it, but calling any delete method throws a server error 500.
I have 3 other functions on the same script involving some more advanced object creation and querying which run fine. Here is some sample code
$object = Backendless::$Data->of(“Events”)->findById($objectID);
//data method
//Backendless::$Data->of("Events")->remove($object);
//presistence method
Backendless::$Persistence->of("Events")->remove($object);
//bulk
$event = new Events();
Backendless::$Persistence->of("Events")->removeBulk( $event, "objectId='".$objectID."'" );
Any thoughts? Thank you.