Update returns an update builder for APIToken.
()
| 416 | |
| 417 | // Update returns an update builder for APIToken. |
| 418 | func (c *APITokenClient) Update() *APITokenUpdate { |
| 419 | mutation := newAPITokenMutation(c.config, OpUpdate) |
| 420 | return &APITokenUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 421 | } |
| 422 | |
| 423 | // UpdateOne returns an update builder for the given entity. |
| 424 | func (c *APITokenClient) UpdateOne(_m *APIToken) *APITokenUpdateOne { |
nothing calls this directly
no test coverage detected