// Code generated by ent, DO NOT EDIT. package userallowedgroup import ( "time" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "github.com/Wei-Shaw/sub2api/ent/predicate" ) // UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ. func UserID(v int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldEQ(FieldUserID, v)) } // GroupID applies equality check predicate on the "group_id" field. It's identical to GroupIDEQ. func GroupID(v int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldEQ(FieldGroupID, v)) } // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ. func CreatedAt(v time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldEQ(FieldCreatedAt, v)) } // UserIDEQ applies the EQ predicate on the "user_id" field. func UserIDEQ(v int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldEQ(FieldUserID, v)) } // UserIDNEQ applies the NEQ predicate on the "user_id" field. func UserIDNEQ(v int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldNEQ(FieldUserID, v)) } // UserIDIn applies the In predicate on the "user_id" field. func UserIDIn(vs ...int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldIn(FieldUserID, vs...)) } // UserIDNotIn applies the NotIn predicate on the "user_id" field. func UserIDNotIn(vs ...int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldNotIn(FieldUserID, vs...)) } // GroupIDEQ applies the EQ predicate on the "group_id" field. func GroupIDEQ(v int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldEQ(FieldGroupID, v)) } // GroupIDNEQ applies the NEQ predicate on the "group_id" field. func GroupIDNEQ(v int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldNEQ(FieldGroupID, v)) } // GroupIDIn applies the In predicate on the "group_id" field. func GroupIDIn(vs ...int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldIn(FieldGroupID, vs...)) } // GroupIDNotIn applies the NotIn predicate on the "group_id" field. func GroupIDNotIn(vs ...int64) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldNotIn(FieldGroupID, vs...)) } // CreatedAtEQ applies the EQ predicate on the "created_at" field. func CreatedAtEQ(v time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldEQ(FieldCreatedAt, v)) } // CreatedAtNEQ applies the NEQ predicate on the "created_at" field. func CreatedAtNEQ(v time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldNEQ(FieldCreatedAt, v)) } // CreatedAtIn applies the In predicate on the "created_at" field. func CreatedAtIn(vs ...time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldIn(FieldCreatedAt, vs...)) } // CreatedAtNotIn applies the NotIn predicate on the "created_at" field. func CreatedAtNotIn(vs ...time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldNotIn(FieldCreatedAt, vs...)) } // CreatedAtGT applies the GT predicate on the "created_at" field. func CreatedAtGT(v time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldGT(FieldCreatedAt, v)) } // CreatedAtGTE applies the GTE predicate on the "created_at" field. func CreatedAtGTE(v time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldGTE(FieldCreatedAt, v)) } // CreatedAtLT applies the LT predicate on the "created_at" field. func CreatedAtLT(v time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldLT(FieldCreatedAt, v)) } // CreatedAtLTE applies the LTE predicate on the "created_at" field. func CreatedAtLTE(v time.Time) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.FieldLTE(FieldCreatedAt, v)) } // HasUser applies the HasEdge predicate on the "user" edge. func HasUser() predicate.UserAllowedGroup { return predicate.UserAllowedGroup(func(s *sql.Selector) { step := sqlgraph.NewStep( sqlgraph.From(Table, UserColumn), 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.UserAllowedGroup { return predicate.UserAllowedGroup(func(s *sql.Selector) { step := newUserStep() sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) { for _, p := range preds { p(s) } }) }) } // HasGroup applies the HasEdge predicate on the "group" edge. func HasGroup() predicate.UserAllowedGroup { return predicate.UserAllowedGroup(func(s *sql.Selector) { step := sqlgraph.NewStep( sqlgraph.From(Table, GroupColumn), sqlgraph.Edge(sqlgraph.M2O, false, GroupTable, GroupColumn), ) sqlgraph.HasNeighbors(s, step) }) } // HasGroupWith applies the HasEdge predicate on the "group" edge with a given conditions (other predicates). func HasGroupWith(preds ...predicate.Group) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(func(s *sql.Selector) { step := newGroupStep() 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.UserAllowedGroup) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.AndPredicates(predicates...)) } // Or groups predicates with the OR operator between them. func Or(predicates ...predicate.UserAllowedGroup) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.OrPredicates(predicates...)) } // Not applies the not operator on the given predicate. func Not(p predicate.UserAllowedGroup) predicate.UserAllowedGroup { return predicate.UserAllowedGroup(sql.NotPredicates(p)) }