ServerNEQ applies the NEQ predicate on the "server" field.
(v string)
| 338 | |
| 339 | // ServerNEQ applies the NEQ predicate on the "server" field. |
| 340 | func ServerNEQ(v string) predicate.Node { |
| 341 | return predicate.Node(sql.FieldNEQ(FieldServer, v)) |
| 342 | } |
| 343 | |
| 344 | // ServerIn applies the In predicate on the "server" field. |
| 345 | func ServerIn(vs ...string) predicate.Node { |