Update returns an update builder for Project.
()
| 2391 | |
| 2392 | // Update returns an update builder for Project. |
| 2393 | func (c *ProjectClient) Update() *ProjectUpdate { |
| 2394 | mutation := newProjectMutation(c.config, OpUpdate) |
| 2395 | return &ProjectUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 2396 | } |
| 2397 | |
| 2398 | // UpdateOne returns an update builder for the given entity. |
| 2399 | func (c *ProjectClient) UpdateOne(_m *Project) *ProjectUpdateOne { |
nothing calls this directly
no test coverage detected