IDGT applies the GT predicate on the ID field.
(id uuid.UUID)
| 39 | |
| 40 | // IDGT applies the GT predicate on the ID field. |
| 41 | func IDGT(id uuid.UUID) predicate.WorkflowRun { |
| 42 | return predicate.WorkflowRun(sql.FieldGT(FieldID, id)) |
| 43 | } |
| 44 | |
| 45 | // IDGTE applies the GTE predicate on the ID field. |
| 46 | func IDGTE(id uuid.UUID) predicate.WorkflowRun { |
nothing calls this directly
no test coverage detected