CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
(v time.Time)
| 63 | |
| 64 | // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ. |
| 65 | func CreatedAt(v time.Time) predicate.CASMapping { |
| 66 | return predicate.CASMapping(sql.FieldEQ(FieldCreatedAt, v)) |
| 67 | } |
| 68 | |
| 69 | // WorkflowRunID applies equality check predicate on the "workflow_run_id" field. It's identical to WorkflowRunIDEQ. |
| 70 | func WorkflowRunID(v uuid.UUID) predicate.CASMapping { |
nothing calls this directly
no test coverage detected