Create returns a builder for creating a Share entity.
()
| 2326 | |
| 2327 | // Create returns a builder for creating a Share entity. |
| 2328 | func (c *ShareClient) Create() *ShareCreate { |
| 2329 | mutation := newShareMutation(c.config, OpCreate) |
| 2330 | return &ShareCreate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 2331 | } |
| 2332 | |
| 2333 | // CreateBulk returns a builder for creating a bulk of Share entities. |
| 2334 | func (c *ShareClient) CreateBulk(builders ...*ShareCreate) *ShareCreateBulk { |
no test coverage detected