Where appends a list predicates to the NodeUpdate builder.
(ps ...predicate.Node)
| 27 | |
| 28 | // Where appends a list predicates to the NodeUpdate builder. |
| 29 | func (nu *NodeUpdate) Where(ps ...predicate.Node) *NodeUpdate { |
| 30 | nu.mutation.Where(ps...) |
| 31 | return nu |
| 32 | } |
| 33 | |
| 34 | // SetUpdatedAt sets the "updated_at" field. |
| 35 | func (nu *NodeUpdate) SetUpdatedAt(t time.Time) *NodeUpdate { |