Update returns an update builder for CASBackend.
()
| 746 | |
| 747 | // Update returns an update builder for CASBackend. |
| 748 | func (c *CASBackendClient) Update() *CASBackendUpdate { |
| 749 | mutation := newCASBackendMutation(c.config, OpUpdate) |
| 750 | return &CASBackendUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 751 | } |
| 752 | |
| 753 | // UpdateOne returns an update builder for the given entity. |
| 754 | func (c *CASBackendClient) UpdateOne(_m *CASBackend) *CASBackendUpdateOne { |
nothing calls this directly
no test coverage detected