CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
(vs ...time.Time)
| 113 | |
| 114 | // CreatedAtNotIn applies the NotIn predicate on the "created_at" field. |
| 115 | func CreatedAtNotIn(vs ...time.Time) predicate.Node { |
| 116 | return predicate.Node(sql.FieldNotIn(FieldCreatedAt, vs...)) |
| 117 | } |
| 118 | |
| 119 | // CreatedAtGT applies the GT predicate on the "created_at" field. |
| 120 | func CreatedAtGT(v time.Time) predicate.Node { |