ProjectIDIn applies the In predicate on the "project_id" field.
(vs ...uuid.UUID)
| 478 | |
| 479 | // ProjectIDIn applies the In predicate on the "project_id" field. |
| 480 | func ProjectIDIn(vs ...uuid.UUID) predicate.APIToken { |
| 481 | return predicate.APIToken(sql.FieldIn(FieldProjectID, vs...)) |
| 482 | } |
| 483 | |
| 484 | // ProjectIDNotIn applies the NotIn predicate on the "project_id" field. |
| 485 | func ProjectIDNotIn(vs ...uuid.UUID) predicate.APIToken { |