SetDeletedAt sets the "deleted_at" field.
(t time.Time)
| 55 | |
| 56 | // SetDeletedAt sets the "deleted_at" field. |
| 57 | func (nc *NodeCreate) SetDeletedAt(t time.Time) *NodeCreate { |
| 58 | nc.mutation.SetDeletedAt(t) |
| 59 | return nc |
| 60 | } |
| 61 | |
| 62 | // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil. |
| 63 | func (nc *NodeCreate) SetNillableDeletedAt(t *time.Time) *NodeCreate { |
no outgoing calls
no test coverage detected