CreatedAtLTE applies the LTE predicate on the "created_at" field.
(v time.Time)
| 189 | |
| 190 | // CreatedAtLTE applies the LTE predicate on the "created_at" field. |
| 191 | func CreatedAtLTE(v time.Time) predicate.WorkflowRun { |
| 192 | return predicate.WorkflowRun(sql.FieldLTE(FieldCreatedAt, v)) |
| 193 | } |
| 194 | |
| 195 | // FinishedAtEQ applies the EQ predicate on the "finished_at" field. |
| 196 | func FinishedAtEQ(v time.Time) predicate.WorkflowRun { |
no test coverage detected