WorkflowRunID applies equality check predicate on the "workflow_run_id" field. It's identical to WorkflowRunIDEQ.
(v uuid.UUID)
| 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 { |
| 71 | return predicate.CASMapping(sql.FieldEQ(FieldWorkflowRunID, v)) |
| 72 | } |
| 73 | |
| 74 | // OrganizationID applies equality check predicate on the "organization_id" field. It's identical to OrganizationIDEQ. |
| 75 | func OrganizationID(v uuid.UUID) predicate.CASMapping { |
nothing calls this directly
no test coverage detected