IDGT applies the GT predicate on the ID field.
(id uuid.UUID)
| 38 | |
| 39 | // IDGT applies the GT predicate on the ID field. |
| 40 | func IDGT(id uuid.UUID) predicate.User { |
| 41 | return predicate.User(sql.FieldGT(FieldID, id)) |
| 42 | } |
| 43 | |
| 44 | // IDGTE applies the GTE predicate on the ID field. |
| 45 | func IDGTE(id uuid.UUID) predicate.User { |