Create returns a builder for creating a FsEvent entity.
()
| 1102 | |
| 1103 | // Create returns a builder for creating a FsEvent entity. |
| 1104 | func (c *FsEventClient) Create() *FsEventCreate { |
| 1105 | mutation := newFsEventMutation(c.config, OpCreate) |
| 1106 | return &FsEventCreate{config: c.config, hooks: c.Hooks(), mutation: mutation} |
| 1107 | } |
| 1108 | |
| 1109 | // CreateBulk returns a builder for creating a bulk of FsEvent entities. |
| 1110 | func (c *FsEventClient) CreateBulk(builders ...*FsEventCreate) *FsEventCreateBulk { |
no test coverage detected