IDNotIn applies the NotIn predicate on the ID field.
(ids ...uuid.UUID)
| 34 | |
| 35 | // IDNotIn applies the NotIn predicate on the ID field. |
| 36 | func IDNotIn(ids ...uuid.UUID) predicate.CASBackend { |
| 37 | return predicate.CASBackend(sql.FieldNotIn(FieldID, ids...)) |
| 38 | } |
| 39 | |
| 40 | // IDGT applies the GT predicate on the ID field. |
| 41 | func IDGT(id uuid.UUID) predicate.CASBackend { |
nothing calls this directly
no test coverage detected