You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Delete mutation should have cascade feature.
Describe the solution you'd like
When deleting a record, the relationship data at other places (relation table, foreign key) should be deleted as well.
The text was updated successfully, but these errors were encountered:
Maybe a directive could be provided that denotes whether a deletion should also cascade delete related records, leave related records alone, or throw an error when deletion of a record with related data is attempted.
Django offers these options with the on_delete argument of their ForeignKey relationship.
Is your feature request related to a problem? Please describe.
Delete mutation should have cascade feature.
Describe the solution you'd like
When deleting a record, the relationship data at other places (relation table, foreign key) should be deleted as well.
The text was updated successfully, but these errors were encountered: