SetCreatedAt sets the "created_at" field.
(t time.Time)
| 27 | |
| 28 | // SetCreatedAt sets the "created_at" field. |
| 29 | func (nc *NodeCreate) SetCreatedAt(t time.Time) *NodeCreate { |
| 30 | nc.mutation.SetCreatedAt(t) |
| 31 | return nc |
| 32 | } |
| 33 | |
| 34 | // SetNillableCreatedAt sets the "created_at" field if the given value is not nil. |
| 35 | func (nc *NodeCreate) SetNillableCreatedAt(t *time.Time) *NodeCreate { |
no outgoing calls
no test coverage detected