UpdateOneID returns an update builder for the given id.
(id uuid.UUID)
| 2403 | |
| 2404 | // UpdateOneID returns an update builder for the given id. |
| 2405 | func (c *ProjectClient) UpdateOneID(id uuid.UUID) *ProjectUpdateOne { |
| 2406 | mutation := newProjectMutation(c.config, OpUpdateOne, withProjectID(id)) |
| 2407 | return &ProjectUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 2408 | } |
| 2409 | |
| 2410 | // Delete returns a delete builder for Project. |
| 2411 | func (c *ProjectClient) Delete() *ProjectDelete { |
nothing calls this directly
no test coverage detected