Where adds a new predicate for the NodeVersionQuery builder.
(ps ...predicate.NodeVersion)
| 40 | |
| 41 | // Where adds a new predicate for the NodeVersionQuery builder. |
| 42 | func (nvq *NodeVersionQuery) Where(ps ...predicate.NodeVersion) *NodeVersionQuery { |
| 43 | nvq.predicates = append(nvq.predicates, ps...) |
| 44 | return nvq |
| 45 | } |
| 46 | |
| 47 | // Limit the number of records to be returned by this query. |
| 48 | func (nvq *NodeVersionQuery) Limit(limit int) *NodeVersionQuery { |
no outgoing calls
no test coverage detected