CreateBulk returns a builder for creating a bulk of User entities.
(builders ...*UserCreate)
| 2849 | |
| 2850 | // CreateBulk returns a builder for creating a bulk of User entities. |
| 2851 | func (c *UserClient) CreateBulk(builders ...*UserCreate) *UserCreateBulk { |
| 2852 | return &UserCreateBulk{config: c.config, builders: builders} |
| 2853 | } |
| 2854 | |
| 2855 | // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates |
| 2856 | // a builder and applies setFunc on it. |
nothing calls this directly
no outgoing calls
no test coverage detected