UpdateOneID returns an update builder for the given id.
(id int)
| 878 | |
| 879 | // UpdateOneID returns an update builder for the given id. |
| 880 | func (c *FileClient) UpdateOneID(id int) *FileUpdateOne { |
| 881 | mutation := newFileMutation(c.config, OpUpdateOne, withFileID(id)) |
| 882 | return &FileUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 883 | } |
| 884 | |
| 885 | // Delete returns a delete builder for File. |
| 886 | func (c *FileClient) Delete() *FileDelete { |
no test coverage detected