Update returns an update builder for User.
()
| 3067 | |
| 3068 | // Update returns an update builder for User. |
| 3069 | func (c *UserClient) Update() *UserUpdate { |
| 3070 | mutation := newUserMutation(c.config, OpUpdate) |
| 3071 | return &UserUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 3072 | } |
| 3073 | |
| 3074 | // UpdateOne returns an update builder for the given entity. |
| 3075 | func (c *UserClient) UpdateOne(_m *User) *UserUpdateOne { |
nothing calls this directly
no test coverage detected