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