Update returns an update builder for Attestation.
()
| 597 | |
| 598 | // Update returns an update builder for Attestation. |
| 599 | func (c *AttestationClient) Update() *AttestationUpdate { |
| 600 | mutation := newAttestationMutation(c.config, OpUpdate) |
| 601 | return &AttestationUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 602 | } |
| 603 | |
| 604 | // UpdateOne returns an update builder for the given entity. |
| 605 | func (c *AttestationClient) UpdateOne(_m *Attestation) *AttestationUpdateOne { |
nothing calls this directly
no test coverage detected