dep upgrade, regenerate
This commit is contained in:
@ -1,9 +1,12 @@
|
||||
// Code generated by entc, DO NOT EDIT.
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package alias
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"entgo.io/ent/dialect/sql"
|
||||
"entgo.io/ent/dialect/sql/sqlgraph"
|
||||
)
|
||||
|
||||
const (
|
||||
@ -62,3 +65,50 @@ var (
|
||||
// UpdateDefaultModified holds the default value on update for the "modified" field.
|
||||
UpdateDefaultModified func() time.Time
|
||||
)
|
||||
|
||||
// OrderOption defines the ordering options for the Alias queries.
|
||||
type OrderOption func(*sql.Selector)
|
||||
|
||||
// ByID orders the results by the id field.
|
||||
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldID, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByCreated orders the results by the created field.
|
||||
func ByCreated(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldCreated, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByModified orders the results by the modified field.
|
||||
func ByModified(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldModified, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByDomainID orders the results by the domain_id field.
|
||||
func ByDomainID(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldDomainID, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByGoto orders the results by the goto field.
|
||||
func ByGoto(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldGoto, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByActive orders the results by the active field.
|
||||
func ByActive(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldActive, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByDomainField orders the results by domain field.
|
||||
func ByDomainField(field string, opts ...sql.OrderTermOption) OrderOption {
|
||||
return func(s *sql.Selector) {
|
||||
sqlgraph.OrderByNeighborTerms(s, newDomainStep(), sql.OrderByField(field, opts...))
|
||||
}
|
||||
}
|
||||
func newDomainStep() *sqlgraph.Step {
|
||||
return sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(DomainInverseTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2O, true, DomainTable, DomainColumn),
|
||||
)
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Code generated by entc, DO NOT EDIT.
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package alias
|
||||
|
||||
@ -12,473 +12,267 @@ import (
|
||||
|
||||
// ID filters vertices based on their ID field.
|
||||
func ID(id int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldID), id))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDEQ applies the EQ predicate on the ID field.
|
||||
func IDEQ(id int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldID), id))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDNEQ applies the NEQ predicate on the ID field.
|
||||
func IDNEQ(id int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldID), id))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDIn applies the In predicate on the ID field.
|
||||
func IDIn(ids ...int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(ids) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
v := make([]interface{}, len(ids))
|
||||
for i := range v {
|
||||
v[i] = ids[i]
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldID), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDNotIn applies the NotIn predicate on the ID field.
|
||||
func IDNotIn(ids ...int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(ids) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
v := make([]interface{}, len(ids))
|
||||
for i := range v {
|
||||
v[i] = ids[i]
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldID), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNotIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDGT applies the GT predicate on the ID field.
|
||||
func IDGT(id int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldID), id))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDGTE applies the GTE predicate on the ID field.
|
||||
func IDGTE(id int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldID), id))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGTE(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLT applies the LT predicate on the ID field.
|
||||
func IDLT(id int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldID), id))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLTE applies the LTE predicate on the ID field.
|
||||
func IDLTE(id int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldID), id))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLTE(FieldID, id))
|
||||
}
|
||||
|
||||
// Created applies equality check predicate on the "created" field. It's identical to CreatedEQ.
|
||||
func Created(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldCreated), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldCreated, v))
|
||||
}
|
||||
|
||||
// Modified applies equality check predicate on the "modified" field. It's identical to ModifiedEQ.
|
||||
func Modified(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldModified), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldModified, v))
|
||||
}
|
||||
|
||||
// DomainID applies equality check predicate on the "domain_id" field. It's identical to DomainIDEQ.
|
||||
func DomainID(v int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldDomainID), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldDomainID, v))
|
||||
}
|
||||
|
||||
// Goto applies equality check predicate on the "goto" field. It's identical to GotoEQ.
|
||||
func Goto(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldGoto, v))
|
||||
}
|
||||
|
||||
// Active applies equality check predicate on the "active" field. It's identical to ActiveEQ.
|
||||
func Active(v bool) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldActive), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldActive, v))
|
||||
}
|
||||
|
||||
// CreatedEQ applies the EQ predicate on the "created" field.
|
||||
func CreatedEQ(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldCreated), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldCreated, v))
|
||||
}
|
||||
|
||||
// CreatedNEQ applies the NEQ predicate on the "created" field.
|
||||
func CreatedNEQ(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldCreated), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNEQ(FieldCreated, v))
|
||||
}
|
||||
|
||||
// CreatedIn applies the In predicate on the "created" field.
|
||||
func CreatedIn(vs ...time.Time) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldCreated), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldIn(FieldCreated, vs...))
|
||||
}
|
||||
|
||||
// CreatedNotIn applies the NotIn predicate on the "created" field.
|
||||
func CreatedNotIn(vs ...time.Time) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldCreated), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNotIn(FieldCreated, vs...))
|
||||
}
|
||||
|
||||
// CreatedGT applies the GT predicate on the "created" field.
|
||||
func CreatedGT(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldCreated), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGT(FieldCreated, v))
|
||||
}
|
||||
|
||||
// CreatedGTE applies the GTE predicate on the "created" field.
|
||||
func CreatedGTE(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldCreated), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGTE(FieldCreated, v))
|
||||
}
|
||||
|
||||
// CreatedLT applies the LT predicate on the "created" field.
|
||||
func CreatedLT(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldCreated), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLT(FieldCreated, v))
|
||||
}
|
||||
|
||||
// CreatedLTE applies the LTE predicate on the "created" field.
|
||||
func CreatedLTE(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldCreated), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLTE(FieldCreated, v))
|
||||
}
|
||||
|
||||
// ModifiedEQ applies the EQ predicate on the "modified" field.
|
||||
func ModifiedEQ(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldModified), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldModified, v))
|
||||
}
|
||||
|
||||
// ModifiedNEQ applies the NEQ predicate on the "modified" field.
|
||||
func ModifiedNEQ(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldModified), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNEQ(FieldModified, v))
|
||||
}
|
||||
|
||||
// ModifiedIn applies the In predicate on the "modified" field.
|
||||
func ModifiedIn(vs ...time.Time) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldModified), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldIn(FieldModified, vs...))
|
||||
}
|
||||
|
||||
// ModifiedNotIn applies the NotIn predicate on the "modified" field.
|
||||
func ModifiedNotIn(vs ...time.Time) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldModified), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNotIn(FieldModified, vs...))
|
||||
}
|
||||
|
||||
// ModifiedGT applies the GT predicate on the "modified" field.
|
||||
func ModifiedGT(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldModified), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGT(FieldModified, v))
|
||||
}
|
||||
|
||||
// ModifiedGTE applies the GTE predicate on the "modified" field.
|
||||
func ModifiedGTE(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldModified), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGTE(FieldModified, v))
|
||||
}
|
||||
|
||||
// ModifiedLT applies the LT predicate on the "modified" field.
|
||||
func ModifiedLT(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldModified), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLT(FieldModified, v))
|
||||
}
|
||||
|
||||
// ModifiedLTE applies the LTE predicate on the "modified" field.
|
||||
func ModifiedLTE(v time.Time) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldModified), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLTE(FieldModified, v))
|
||||
}
|
||||
|
||||
// ModifiedIsNil applies the IsNil predicate on the "modified" field.
|
||||
func ModifiedIsNil() predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.IsNull(s.C(FieldModified)))
|
||||
})
|
||||
return predicate.Alias(sql.FieldIsNull(FieldModified))
|
||||
}
|
||||
|
||||
// ModifiedNotNil applies the NotNil predicate on the "modified" field.
|
||||
func ModifiedNotNil() predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NotNull(s.C(FieldModified)))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNotNull(FieldModified))
|
||||
}
|
||||
|
||||
// DomainIDEQ applies the EQ predicate on the "domain_id" field.
|
||||
func DomainIDEQ(v int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldDomainID), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldDomainID, v))
|
||||
}
|
||||
|
||||
// DomainIDNEQ applies the NEQ predicate on the "domain_id" field.
|
||||
func DomainIDNEQ(v int64) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldDomainID), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNEQ(FieldDomainID, v))
|
||||
}
|
||||
|
||||
// DomainIDIn applies the In predicate on the "domain_id" field.
|
||||
func DomainIDIn(vs ...int64) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldDomainID), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldIn(FieldDomainID, vs...))
|
||||
}
|
||||
|
||||
// DomainIDNotIn applies the NotIn predicate on the "domain_id" field.
|
||||
func DomainIDNotIn(vs ...int64) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldDomainID), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNotIn(FieldDomainID, vs...))
|
||||
}
|
||||
|
||||
// DomainIDIsNil applies the IsNil predicate on the "domain_id" field.
|
||||
func DomainIDIsNil() predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.IsNull(s.C(FieldDomainID)))
|
||||
})
|
||||
return predicate.Alias(sql.FieldIsNull(FieldDomainID))
|
||||
}
|
||||
|
||||
// DomainIDNotNil applies the NotNil predicate on the "domain_id" field.
|
||||
func DomainIDNotNil() predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NotNull(s.C(FieldDomainID)))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNotNull(FieldDomainID))
|
||||
}
|
||||
|
||||
// GotoEQ applies the EQ predicate on the "goto" field.
|
||||
func GotoEQ(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoNEQ applies the NEQ predicate on the "goto" field.
|
||||
func GotoNEQ(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNEQ(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoIn applies the In predicate on the "goto" field.
|
||||
func GotoIn(vs ...string) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldGoto), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldIn(FieldGoto, vs...))
|
||||
}
|
||||
|
||||
// GotoNotIn applies the NotIn predicate on the "goto" field.
|
||||
func GotoNotIn(vs ...string) predicate.Alias {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldGoto), v...))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNotIn(FieldGoto, vs...))
|
||||
}
|
||||
|
||||
// GotoGT applies the GT predicate on the "goto" field.
|
||||
func GotoGT(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGT(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoGTE applies the GTE predicate on the "goto" field.
|
||||
func GotoGTE(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldGTE(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoLT applies the LT predicate on the "goto" field.
|
||||
func GotoLT(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLT(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoLTE applies the LTE predicate on the "goto" field.
|
||||
func GotoLTE(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldLTE(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoContains applies the Contains predicate on the "goto" field.
|
||||
func GotoContains(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.Contains(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldContains(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoHasPrefix applies the HasPrefix predicate on the "goto" field.
|
||||
func GotoHasPrefix(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.HasPrefix(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldHasPrefix(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoHasSuffix applies the HasSuffix predicate on the "goto" field.
|
||||
func GotoHasSuffix(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.HasSuffix(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldHasSuffix(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoEqualFold applies the EqualFold predicate on the "goto" field.
|
||||
func GotoEqualFold(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EqualFold(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEqualFold(FieldGoto, v))
|
||||
}
|
||||
|
||||
// GotoContainsFold applies the ContainsFold predicate on the "goto" field.
|
||||
func GotoContainsFold(v string) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.ContainsFold(s.C(FieldGoto), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldContainsFold(FieldGoto, v))
|
||||
}
|
||||
|
||||
// ActiveEQ applies the EQ predicate on the "active" field.
|
||||
func ActiveEQ(v bool) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldActive), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldEQ(FieldActive, v))
|
||||
}
|
||||
|
||||
// ActiveNEQ applies the NEQ predicate on the "active" field.
|
||||
func ActiveNEQ(v bool) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldActive), v))
|
||||
})
|
||||
return predicate.Alias(sql.FieldNEQ(FieldActive, v))
|
||||
}
|
||||
|
||||
// HasDomain applies the HasEdge predicate on the "domain" edge.
|
||||
@ -486,7 +280,6 @@ func HasDomain() predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(DomainTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2O, true, DomainTable, DomainColumn),
|
||||
)
|
||||
sqlgraph.HasNeighbors(s, step)
|
||||
@ -496,11 +289,7 @@ func HasDomain() predicate.Alias {
|
||||
// HasDomainWith applies the HasEdge predicate on the "domain" edge with a given conditions (other predicates).
|
||||
func HasDomainWith(preds ...predicate.Domain) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(DomainInverseTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2O, true, DomainTable, DomainColumn),
|
||||
)
|
||||
step := newDomainStep()
|
||||
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
||||
for _, p := range preds {
|
||||
p(s)
|
||||
@ -511,32 +300,15 @@ func HasDomainWith(preds ...predicate.Domain) predicate.Alias {
|
||||
|
||||
// And groups predicates with the AND operator between them.
|
||||
func And(predicates ...predicate.Alias) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s1 := s.Clone().SetP(nil)
|
||||
for _, p := range predicates {
|
||||
p(s1)
|
||||
}
|
||||
s.Where(s1.P())
|
||||
})
|
||||
return predicate.Alias(sql.AndPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Or groups predicates with the OR operator between them.
|
||||
func Or(predicates ...predicate.Alias) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
s1 := s.Clone().SetP(nil)
|
||||
for i, p := range predicates {
|
||||
if i > 0 {
|
||||
s1.Or()
|
||||
}
|
||||
p(s1)
|
||||
}
|
||||
s.Where(s1.P())
|
||||
})
|
||||
return predicate.Alias(sql.OrPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Not applies the not operator on the given predicate.
|
||||
func Not(p predicate.Alias) predicate.Alias {
|
||||
return predicate.Alias(func(s *sql.Selector) {
|
||||
p(s.Not())
|
||||
})
|
||||
return predicate.Alias(sql.NotPredicates(p))
|
||||
}
|
||||
|
Reference in New Issue
Block a user