Delete returns a delete builder for Lock.
()
| 1414 | |
| 1415 | // Delete returns a delete builder for Lock. |
| 1416 | func (c *LockClient) Delete() *LockDelete { |
| 1417 | mutation := newLockMutation(c.config, OpDelete) |
| 1418 | return &LockDelete{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 1419 | } |
| 1420 | |
| 1421 | // DeleteOne returns a builder for deleting the given entity. |
| 1422 | func (c *LockClient) DeleteOne(_m *Lock) *LockDeleteOne { |
no test coverage detected