CreatedAtGTE applies the GTE predicate on the "created_at" field.
(v time.Time)
| 179 | |
| 180 | // CreatedAtGTE applies the GTE predicate on the "created_at" field. |
| 181 | func CreatedAtGTE(v time.Time) predicate.WorkflowRun { |
| 182 | return predicate.WorkflowRun(sql.FieldGTE(FieldCreatedAt, v)) |
| 183 | } |
| 184 | |
| 185 | // CreatedAtLT applies the LT predicate on the "created_at" field. |
| 186 | func CreatedAtLT(v time.Time) predicate.WorkflowRun { |
no test coverage detected