Exec executes the query.
(ctx context.Context)
| 882 | |
| 883 | // Exec executes the query. |
| 884 | func (ncb *NodeCreateBulk) Exec(ctx context.Context) error { |
| 885 | _, err := ncb.Save(ctx) |
| 886 | return err |
| 887 | } |
| 888 | |
| 889 | // ExecX is like Exec, but panics if an error occurs. |
| 890 | func (ncb *NodeCreateBulk) ExecX(ctx context.Context) { |