Update returns an update builder for CASMapping.
()
| 911 | |
| 912 | // Update returns an update builder for CASMapping. |
| 913 | func (c *CASMappingClient) Update() *CASMappingUpdate { |
| 914 | mutation := newCASMappingMutation(c.config, OpUpdate) |
| 915 | return &CASMappingUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 916 | } |
| 917 | |
| 918 | // UpdateOne returns an update builder for the given entity. |
| 919 | func (c *CASMappingClient) UpdateOne(_m *CASMapping) *CASMappingUpdateOne { |
nothing calls this directly
no test coverage detected