Two questions: I know that cascading deletes is on your dev roadmap. Any idea when we can see this new feature? I’m using the iOS SDK.
In the meantime, what is the best way to delete related items when deleting the parent? I’ve tried removing them from the parent object and saving the parent, but that just removes the relationship, and leaves the child objects in the related table.
In my app I have a table of forum posts, and a related table of comments, with a one-to-many relationship between posts and comments. When I delete a post, I want to delete all the related comments. Seems like there is no way to accomplish this in the SDK without doing multiple API calls, one to delete the parent, and one for each of the now orphaned comment objects.