UpdateOne returns an update builder for the given entity.
(_m *CASBackend)
| 752 | |
| 753 | // UpdateOne returns an update builder for the given entity. |
| 754 | func (c *CASBackendClient) UpdateOne(_m *CASBackend) *CASBackendUpdateOne { |
| 755 | mutation := newCASBackendMutation(c.config, OpUpdateOne, withCASBackend(_m)) |
| 756 | return &CASBackendUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 757 | } |
| 758 | |
| 759 | // UpdateOneID returns an update builder for the given id. |
| 760 | func (c *CASBackendClient) UpdateOneID(id uuid.UUID) *CASBackendUpdateOne { |
nothing calls this directly
no test coverage detected