Create returns a builder for creating a Integration entity.
()
| 1396 | |
| 1397 | // Create returns a builder for creating a Integration entity. |
| 1398 | func (c *IntegrationClient) Create() *IntegrationCreate { |
| 1399 | mutation := newIntegrationMutation(c.config, OpCreate) |
| 1400 | return &IntegrationCreate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 1401 | } |
| 1402 | |
| 1403 | // CreateBulk returns a builder for creating a bulk of Integration entities. |
| 1404 | func (c *IntegrationClient) CreateBulk(builders ...*IntegrationCreate) *IntegrationCreateBulk { |
no test coverage detected