Create returns a builder for creating a Attestation entity.
()
| 571 | |
| 572 | // Create returns a builder for creating a Attestation entity. |
| 573 | func (c *AttestationClient) Create() *AttestationCreate { |
| 574 | mutation := newAttestationMutation(c.config, OpCreate) |
| 575 | return &AttestationCreate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 576 | } |
| 577 | |
| 578 | // CreateBulk returns a builder for creating a bulk of Attestation entities. |
| 579 | func (c *AttestationClient) CreateBulk(builders ...*AttestationCreate) *AttestationCreateBulk { |
no test coverage detected