IDNEQ applies the NEQ predicate on the ID field.
(id uuid.UUID)
| 23 | |
| 24 | // IDNEQ applies the NEQ predicate on the ID field. |
| 25 | func IDNEQ(id uuid.UUID) predicate.CASMapping { |
| 26 | return predicate.CASMapping(sql.FieldNEQ(FieldID, id)) |
| 27 | } |
| 28 | |
| 29 | // IDIn applies the In predicate on the ID field. |
| 30 | func IDIn(ids ...uuid.UUID) predicate.CASMapping { |
nothing calls this directly
no test coverage detected