Create returns a builder for creating a CASBackend entity.
()
| 720 | |
| 721 | // Create returns a builder for creating a CASBackend entity. |
| 722 | func (c *CASBackendClient) Create() *CASBackendCreate { |
| 723 | mutation := newCASBackendMutation(c.config, OpCreate) |
| 724 | return &CASBackendCreate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 725 | } |
| 726 | |
| 727 | // CreateBulk returns a builder for creating a bulk of CASBackend entities. |
| 728 | func (c *CASBackendClient) CreateBulk(builders ...*CASBackendCreate) *CASBackendCreateBulk { |
no test coverage detected