UpdateOneID returns an update builder for the given id.
(id uuid.UUID)
| 3079 | |
| 3080 | // UpdateOneID returns an update builder for the given id. |
| 3081 | func (c *UserClient) UpdateOneID(id uuid.UUID) *UserUpdateOne { |
| 3082 | mutation := newUserMutation(c.config, OpUpdateOne, withUserID(id)) |
| 3083 | return &UserUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 3084 | } |
| 3085 | |
| 3086 | // Delete returns a delete builder for User. |
| 3087 | func (c *UserClient) Delete() *UserDelete { |