Closed
Description
error thrown by parse-server while trying to delete parseRelation between Role and _User
this is the code I have executed in php:
$role = get_role_by_name($data->roleName)[0];
$role->getUsers()->remove($user);
try {
$role->save(true);
}
catch (ParseException $ex) {
echo "Error: " . $ex->getCode() . " " . $ex->getMessage()."<br/>";
}
and this is the error thrown by parse-server
Thanks in advance!