UpdateOneID returns an update builder for the given id.
(id uuid.UUID)
| 428 | |
| 429 | // UpdateOneID returns an update builder for the given id. |
| 430 | func (c *APITokenClient) UpdateOneID(id uuid.UUID) *APITokenUpdateOne { |
| 431 | mutation := newAPITokenMutation(c.config, OpUpdateOne, withAPITokenID(id)) |
| 432 | return &APITokenUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 433 | } |
| 434 | |
| 435 | // Delete returns a delete builder for APIToken. |
| 436 | func (c *APITokenClient) Delete() *APITokenDelete { |
nothing calls this directly
no test coverage detected