mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
339 lines
9.0 KiB
Go
339 lines
9.0 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package pet
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/entc/integration/template/ent/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.Pet {
|
|
return predicate.Pet(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...))
|
|
})
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.Pet {
|
|
return predicate.Pet(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...))
|
|
})
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// Age applies equality check predicate on the "age" field. It's identical to AgeEQ.
|
|
func Age(v int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldAge), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAt applies equality check predicate on the "licensed_at" field. It's identical to LicensedAtEQ.
|
|
func LicensedAt(v time.Time) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldLicensedAt), v))
|
|
})
|
|
}
|
|
|
|
// AgeEQ applies the EQ predicate on the "age" field.
|
|
func AgeEQ(v int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldAge), v))
|
|
})
|
|
}
|
|
|
|
// AgeNEQ applies the NEQ predicate on the "age" field.
|
|
func AgeNEQ(v int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldAge), v))
|
|
})
|
|
}
|
|
|
|
// AgeIn applies the In predicate on the "age" field.
|
|
func AgeIn(vs ...int) predicate.Pet {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Pet(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(FieldAge), v...))
|
|
})
|
|
}
|
|
|
|
// AgeNotIn applies the NotIn predicate on the "age" field.
|
|
func AgeNotIn(vs ...int) predicate.Pet {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Pet(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(FieldAge), v...))
|
|
})
|
|
}
|
|
|
|
// AgeGT applies the GT predicate on the "age" field.
|
|
func AgeGT(v int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldAge), v))
|
|
})
|
|
}
|
|
|
|
// AgeGTE applies the GTE predicate on the "age" field.
|
|
func AgeGTE(v int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldAge), v))
|
|
})
|
|
}
|
|
|
|
// AgeLT applies the LT predicate on the "age" field.
|
|
func AgeLT(v int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldAge), v))
|
|
})
|
|
}
|
|
|
|
// AgeLTE applies the LTE predicate on the "age" field.
|
|
func AgeLTE(v int) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldAge), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAtEQ applies the EQ predicate on the "licensed_at" field.
|
|
func LicensedAtEQ(v time.Time) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldLicensedAt), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAtNEQ applies the NEQ predicate on the "licensed_at" field.
|
|
func LicensedAtNEQ(v time.Time) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldLicensedAt), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAtIn applies the In predicate on the "licensed_at" field.
|
|
func LicensedAtIn(vs ...time.Time) predicate.Pet {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Pet(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(FieldLicensedAt), v...))
|
|
})
|
|
}
|
|
|
|
// LicensedAtNotIn applies the NotIn predicate on the "licensed_at" field.
|
|
func LicensedAtNotIn(vs ...time.Time) predicate.Pet {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Pet(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(FieldLicensedAt), v...))
|
|
})
|
|
}
|
|
|
|
// LicensedAtGT applies the GT predicate on the "licensed_at" field.
|
|
func LicensedAtGT(v time.Time) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldLicensedAt), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAtGTE applies the GTE predicate on the "licensed_at" field.
|
|
func LicensedAtGTE(v time.Time) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldLicensedAt), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAtLT applies the LT predicate on the "licensed_at" field.
|
|
func LicensedAtLT(v time.Time) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldLicensedAt), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAtLTE applies the LTE predicate on the "licensed_at" field.
|
|
func LicensedAtLTE(v time.Time) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldLicensedAt), v))
|
|
})
|
|
}
|
|
|
|
// LicensedAtIsNil applies the IsNil predicate on the "licensed_at" field.
|
|
func LicensedAtIsNil() predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.IsNull(s.C(FieldLicensedAt)))
|
|
})
|
|
}
|
|
|
|
// LicensedAtNotNil applies the NotNil predicate on the "licensed_at" field.
|
|
func LicensedAtNotNil() predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s.Where(sql.NotNull(s.C(FieldLicensedAt)))
|
|
})
|
|
}
|
|
|
|
// HasOwner applies the HasEdge predicate on the "owner" edge.
|
|
func HasOwner() predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(OwnerTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).
|
|
func HasOwnerWith(preds ...predicate.User) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(OwnerInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
|
|
)
|
|
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.Pet) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
s1 := s.Clone().SetP(nil)
|
|
for _, p := range predicates {
|
|
p(s1)
|
|
}
|
|
s.Where(s1.P())
|
|
})
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.Pet) predicate.Pet {
|
|
return predicate.Pet(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())
|
|
})
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.Pet) predicate.Pet {
|
|
return predicate.Pet(func(s *sql.Selector) {
|
|
p(s.Not())
|
|
})
|
|
}
|