IDEQ applies the EQ predicate on the ID field.
(id uuid.UUID)
| 19 | |
| 20 | // IDEQ applies the EQ predicate on the ID field. |
| 21 | func IDEQ(id uuid.UUID) predicate.WorkflowRun { |
| 22 | return predicate.WorkflowRun(sql.FieldEQ(FieldID, id)) |
| 23 | } |
| 24 | |
| 25 | // IDNEQ applies the NEQ predicate on the ID field. |
| 26 | func IDNEQ(id uuid.UUID) predicate.WorkflowRun { |
nothing calls this directly
no test coverage detected