IDLTE applies the LTE predicate on the ID field.
(id uuid.UUID)
| 54 | |
| 55 | // IDLTE applies the LTE predicate on the ID field. |
| 56 | func IDLTE(id uuid.UUID) predicate.WorkflowRun { |
| 57 | return predicate.WorkflowRun(sql.FieldLTE(FieldID, id)) |
| 58 | } |
| 59 | |
| 60 | // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ. |
| 61 | func CreatedAt(v time.Time) predicate.WorkflowRun { |
nothing calls this directly
no test coverage detected