I have 3 top level entities in
my app: Circuit, Issue, Document
Circuits can contain
Documents and Issues can contain
Documents.
When I delete a Circuit, I want it to delete the
documents associated with it, unless it is used by something else. I would like this same behavior with Issues. I have it working when the only
…