Update returns an update builder for Integration.
()
| 1422 | |
| 1423 | // Update returns an update builder for Integration. |
| 1424 | func (c *IntegrationClient) Update() *IntegrationUpdate { |
| 1425 | mutation := newIntegrationMutation(c.config, OpUpdate) |
| 1426 | return &IntegrationUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 1427 | } |
| 1428 | |
| 1429 | // UpdateOne returns an update builder for the given entity. |
| 1430 | func (c *IntegrationClient) UpdateOne(_m *Integration) *IntegrationUpdateOne { |
nothing calls this directly
no test coverage detected