IDIn applies the In predicate on the ID field.
(ids ...uuid.UUID)
| 28 | |
| 29 | // IDIn applies the In predicate on the ID field. |
| 30 | func IDIn(ids ...uuid.UUID) predicate.Organization { |
| 31 | return predicate.Organization(sql.FieldIn(FieldID, ids...)) |
| 32 | } |
| 33 | |
| 34 | // IDNotIn applies the NotIn predicate on the ID field. |
| 35 | func IDNotIn(ids ...uuid.UUID) predicate.Organization { |
no test coverage detected