210 lines
6.7 KiB
Go
210 lines
6.7 KiB
Go
|
// Code generated by ent, DO NOT EDIT.
|
||
|
|
||
|
package logentry
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"code.icod.de/dalu/gomanager/ent/predicate"
|
||
|
"entgo.io/ent/dialect/sql"
|
||
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
||
|
)
|
||
|
|
||
|
// ID filters vertices based on their ID field.
|
||
|
func ID(id int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDEQ applies the EQ predicate on the ID field.
|
||
|
func IDEQ(id int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDNEQ applies the NEQ predicate on the ID field.
|
||
|
func IDNEQ(id int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldNEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDIn applies the In predicate on the ID field.
|
||
|
func IDIn(ids ...int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldIn(FieldID, ids...))
|
||
|
}
|
||
|
|
||
|
// IDNotIn applies the NotIn predicate on the ID field.
|
||
|
func IDNotIn(ids ...int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldNotIn(FieldID, ids...))
|
||
|
}
|
||
|
|
||
|
// IDGT applies the GT predicate on the ID field.
|
||
|
func IDGT(id int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldGT(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDGTE applies the GTE predicate on the ID field.
|
||
|
func IDGTE(id int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldGTE(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDLT applies the LT predicate on the ID field.
|
||
|
func IDLT(id int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldLT(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDLTE applies the LTE predicate on the ID field.
|
||
|
func IDLTE(id int) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldLTE(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// Date applies equality check predicate on the "date" field. It's identical to DateEQ.
|
||
|
func Date(v time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldEQ(FieldDate, v))
|
||
|
}
|
||
|
|
||
|
// Content applies equality check predicate on the "content" field. It's identical to ContentEQ.
|
||
|
func Content(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldEQ(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// DateEQ applies the EQ predicate on the "date" field.
|
||
|
func DateEQ(v time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldEQ(FieldDate, v))
|
||
|
}
|
||
|
|
||
|
// DateNEQ applies the NEQ predicate on the "date" field.
|
||
|
func DateNEQ(v time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldNEQ(FieldDate, v))
|
||
|
}
|
||
|
|
||
|
// DateIn applies the In predicate on the "date" field.
|
||
|
func DateIn(vs ...time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldIn(FieldDate, vs...))
|
||
|
}
|
||
|
|
||
|
// DateNotIn applies the NotIn predicate on the "date" field.
|
||
|
func DateNotIn(vs ...time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldNotIn(FieldDate, vs...))
|
||
|
}
|
||
|
|
||
|
// DateGT applies the GT predicate on the "date" field.
|
||
|
func DateGT(v time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldGT(FieldDate, v))
|
||
|
}
|
||
|
|
||
|
// DateGTE applies the GTE predicate on the "date" field.
|
||
|
func DateGTE(v time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldGTE(FieldDate, v))
|
||
|
}
|
||
|
|
||
|
// DateLT applies the LT predicate on the "date" field.
|
||
|
func DateLT(v time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldLT(FieldDate, v))
|
||
|
}
|
||
|
|
||
|
// DateLTE applies the LTE predicate on the "date" field.
|
||
|
func DateLTE(v time.Time) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldLTE(FieldDate, v))
|
||
|
}
|
||
|
|
||
|
// ContentEQ applies the EQ predicate on the "content" field.
|
||
|
func ContentEQ(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldEQ(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentNEQ applies the NEQ predicate on the "content" field.
|
||
|
func ContentNEQ(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldNEQ(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentIn applies the In predicate on the "content" field.
|
||
|
func ContentIn(vs ...string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldIn(FieldContent, vs...))
|
||
|
}
|
||
|
|
||
|
// ContentNotIn applies the NotIn predicate on the "content" field.
|
||
|
func ContentNotIn(vs ...string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldNotIn(FieldContent, vs...))
|
||
|
}
|
||
|
|
||
|
// ContentGT applies the GT predicate on the "content" field.
|
||
|
func ContentGT(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldGT(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentGTE applies the GTE predicate on the "content" field.
|
||
|
func ContentGTE(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldGTE(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentLT applies the LT predicate on the "content" field.
|
||
|
func ContentLT(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldLT(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentLTE applies the LTE predicate on the "content" field.
|
||
|
func ContentLTE(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldLTE(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentContains applies the Contains predicate on the "content" field.
|
||
|
func ContentContains(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldContains(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentHasPrefix applies the HasPrefix predicate on the "content" field.
|
||
|
func ContentHasPrefix(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldHasPrefix(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentHasSuffix applies the HasSuffix predicate on the "content" field.
|
||
|
func ContentHasSuffix(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldHasSuffix(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentEqualFold applies the EqualFold predicate on the "content" field.
|
||
|
func ContentEqualFold(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldEqualFold(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// ContentContainsFold applies the ContainsFold predicate on the "content" field.
|
||
|
func ContentContainsFold(v string) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.FieldContainsFold(FieldContent, v))
|
||
|
}
|
||
|
|
||
|
// HasProject applies the HasEdge predicate on the "project" edge.
|
||
|
func HasProject() predicate.Logentry {
|
||
|
return predicate.Logentry(func(s *sql.Selector) {
|
||
|
step := sqlgraph.NewStep(
|
||
|
sqlgraph.From(Table, FieldID),
|
||
|
sqlgraph.Edge(sqlgraph.M2O, true, ProjectTable, ProjectColumn),
|
||
|
)
|
||
|
sqlgraph.HasNeighbors(s, step)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// HasProjectWith applies the HasEdge predicate on the "project" edge with a given conditions (other predicates).
|
||
|
func HasProjectWith(preds ...predicate.Project) predicate.Logentry {
|
||
|
return predicate.Logentry(func(s *sql.Selector) {
|
||
|
step := newProjectStep()
|
||
|
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.Logentry) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.AndPredicates(predicates...))
|
||
|
}
|
||
|
|
||
|
// Or groups predicates with the OR operator between them.
|
||
|
func Or(predicates ...predicate.Logentry) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.OrPredicates(predicates...))
|
||
|
}
|
||
|
|
||
|
// Not applies the not operator on the given predicate.
|
||
|
func Not(p predicate.Logentry) predicate.Logentry {
|
||
|
return predicate.Logentry(sql.NotPredicates(p))
|
||
|
}
|