234 lines
8 KiB
Go
234 lines
8 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package passwordtoken
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"github.com/camzawacki/personal-site/ent/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// Token applies equality check predicate on the "token" field. It's identical to TokenEQ.
|
|
func Token(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldToken, v))
|
|
}
|
|
|
|
// UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
|
|
func UserID(v int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// TokenEQ applies the EQ predicate on the "token" field.
|
|
func TokenEQ(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldToken, v))
|
|
}
|
|
|
|
// TokenNEQ applies the NEQ predicate on the "token" field.
|
|
func TokenNEQ(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNEQ(FieldToken, v))
|
|
}
|
|
|
|
// TokenIn applies the In predicate on the "token" field.
|
|
func TokenIn(vs ...string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldIn(FieldToken, vs...))
|
|
}
|
|
|
|
// TokenNotIn applies the NotIn predicate on the "token" field.
|
|
func TokenNotIn(vs ...string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNotIn(FieldToken, vs...))
|
|
}
|
|
|
|
// TokenGT applies the GT predicate on the "token" field.
|
|
func TokenGT(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldGT(FieldToken, v))
|
|
}
|
|
|
|
// TokenGTE applies the GTE predicate on the "token" field.
|
|
func TokenGTE(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldGTE(FieldToken, v))
|
|
}
|
|
|
|
// TokenLT applies the LT predicate on the "token" field.
|
|
func TokenLT(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldLT(FieldToken, v))
|
|
}
|
|
|
|
// TokenLTE applies the LTE predicate on the "token" field.
|
|
func TokenLTE(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldLTE(FieldToken, v))
|
|
}
|
|
|
|
// TokenContains applies the Contains predicate on the "token" field.
|
|
func TokenContains(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldContains(FieldToken, v))
|
|
}
|
|
|
|
// TokenHasPrefix applies the HasPrefix predicate on the "token" field.
|
|
func TokenHasPrefix(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldHasPrefix(FieldToken, v))
|
|
}
|
|
|
|
// TokenHasSuffix applies the HasSuffix predicate on the "token" field.
|
|
func TokenHasSuffix(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldHasSuffix(FieldToken, v))
|
|
}
|
|
|
|
// TokenEqualFold applies the EqualFold predicate on the "token" field.
|
|
func TokenEqualFold(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEqualFold(FieldToken, v))
|
|
}
|
|
|
|
// TokenContainsFold applies the ContainsFold predicate on the "token" field.
|
|
func TokenContainsFold(v string) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldContainsFold(FieldToken, v))
|
|
}
|
|
|
|
// UserIDEQ applies the EQ predicate on the "user_id" field.
|
|
func UserIDEQ(v int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDNEQ applies the NEQ predicate on the "user_id" field.
|
|
func UserIDNEQ(v int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDIn applies the In predicate on the "user_id" field.
|
|
func UserIDIn(vs ...int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// UserIDNotIn applies the NotIn predicate on the "user_id" field.
|
|
func UserIDNotIn(vs ...int) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNotIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// HasUser applies the HasEdge predicate on the "user" edge.
|
|
func HasUser() predicate.PasswordToken {
|
|
return predicate.PasswordToken(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, false, UserTable, UserColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
|
|
func HasUserWith(preds ...predicate.User) predicate.PasswordToken {
|
|
return predicate.PasswordToken(func(s *sql.Selector) {
|
|
step := newUserStep()
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.PasswordToken) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.PasswordToken) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.PasswordToken) predicate.PasswordToken {
|
|
return predicate.PasswordToken(sql.NotPredicates(p))
|
|
}
|