OrganizationIDEQ applies the EQ predicate on the "organization_id" field.
(v uuid.UUID)
| 233 | |
| 234 | // OrganizationIDEQ applies the EQ predicate on the "organization_id" field. |
| 235 | func OrganizationIDEQ(v uuid.UUID) predicate.Group { |
| 236 | return predicate.Group(sql.FieldEQ(FieldOrganizationID, v)) |
| 237 | } |
| 238 | |
| 239 | // OrganizationIDNEQ applies the NEQ predicate on the "organization_id" field. |
| 240 | func OrganizationIDNEQ(v uuid.UUID) predicate.Group { |
no test coverage detected