Update returns an update builder for Group.
()
| 1092 | |
| 1093 | // Update returns an update builder for Group. |
| 1094 | func (c *GroupClient) Update() *GroupUpdate { |
| 1095 | mutation := newGroupMutation(c.config, OpUpdate) |
| 1096 | return &GroupUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 1097 | } |
| 1098 | |
| 1099 | // UpdateOne returns an update builder for the given entity. |
| 1100 | func (c *GroupClient) UpdateOne(_m *Group) *GroupUpdateOne { |
nothing calls this directly
no test coverage detected