IDGTE applies the GTE predicate on the ID field.
(id uuid.UUID)
| 43 | |
| 44 | // IDGTE applies the GTE predicate on the ID field. |
| 45 | func IDGTE(id uuid.UUID) predicate.User { |
| 46 | return predicate.User(sql.FieldGTE(FieldID, id)) |
| 47 | } |
| 48 | |
| 49 | // IDLT applies the LT predicate on the ID field. |
| 50 | func IDLT(id uuid.UUID) predicate.User { |