Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Question] AfterDelete Hook documentation is unclear #816

Open
keif888 opened this issue Mar 7, 2025 · 0 comments
Open

[Question] AfterDelete Hook documentation is unclear #816

keif888 opened this issue Mar 7, 2025 · 0 comments
Assignees

Comments

@keif888
Copy link

keif888 commented Mar 7, 2025

Document Link

Deleting an object

Your Question

The documentation doesn't state what the AfterDelete hook receives in the struct that is provided to the hook.
eg. If you issue a Delete(struct, id) then AfterDelete gets the struct, but NOT the id.

Expected answer

Clear documentation on what GORM provides in the struct passed to the hook.

  • Use Case 1 - Struct populated with ID
    • AfterDelete is called ONCE and receives the struct with ID (and other fields if provided), UpdatedAt, and DeletedAt populated
  • Use Case 2 - Struct without ID, and list of ID(s) provided in delete conditions
    • AfterDelete is called ONCE and receives the struct without ID (but other fields if provided), UpdatedAt, and DeletedAt populated
  • Use Case 3 - Empty Struct, Delete using Where clause
    • AfterDelete is called ONCE and receives a struct with UpdatedAt, and DeletedAt populated

See go-gorm/playground#792 for example tests that show some of the ways that you can execute a delete.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants