IDNotIn applies the NotIn predicate on the ID field.
(ids ...uuid.UUID)
| 33 | |
| 34 | // IDNotIn applies the NotIn predicate on the ID field. |
| 35 | func IDNotIn(ids ...uuid.UUID) predicate.User { |
| 36 | return predicate.User(sql.FieldNotIn(FieldID, ids...)) |
| 37 | } |
| 38 | |
| 39 | // IDGT applies the GT predicate on the ID field. |
| 40 | func IDGT(id uuid.UUID) predicate.User { |