ProjectIDIn applies the In predicate on the "project_id" field.
(vs ...uuid.UUID)
| 548 | |
| 549 | // ProjectIDIn applies the In predicate on the "project_id" field. |
| 550 | func ProjectIDIn(vs ...uuid.UUID) predicate.Workflow { |
| 551 | return predicate.Workflow(sql.FieldIn(FieldProjectID, vs...)) |
| 552 | } |
| 553 | |
| 554 | // ProjectIDNotIn applies the NotIn predicate on the "project_id" field. |
| 555 | func ProjectIDNotIn(vs ...uuid.UUID) predicate.Workflow { |
no test coverage detected