UpdateOneID returns an update builder for the given id.
(id uuid.UUID)
| 1104 | |
| 1105 | // UpdateOneID returns an update builder for the given id. |
| 1106 | func (c *GroupClient) UpdateOneID(id uuid.UUID) *GroupUpdateOne { |
| 1107 | mutation := newGroupMutation(c.config, OpUpdateOne, withGroupID(id)) |
| 1108 | return &GroupUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 1109 | } |
| 1110 | |
| 1111 | // Delete returns a delete builder for Group. |
| 1112 | func (c *GroupClient) Delete() *GroupDelete { |
nothing calls this directly
no test coverage detected