Where appends a list predicates to the NodeUpdate builder.
(ps ...predicate.Node)
| 588 | |
| 589 | // Where appends a list predicates to the NodeUpdate builder. |
| 590 | func (nuo *NodeUpdateOne) Where(ps ...predicate.Node) *NodeUpdateOne { |
| 591 | nuo.mutation.Where(ps...) |
| 592 | return nuo |
| 593 | } |
| 594 | |
| 595 | // Select allows selecting one or more fields (columns) of the returned entity. |
| 596 | // The default is selecting all fields defined in the entity schema. |