mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
This allows custom predicates mutating the root querying and still respect the AND/OR/NOT semantics
268 lines
8.4 KiB
Go
268 lines
8.4 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 ent, DO NOT EDIT.
|
|
|
|
package user
|
|
|
|
import (
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/entc/integration/migrate/versioned/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.User {
|
|
return predicate.User(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.User {
|
|
return predicate.User(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.User {
|
|
return predicate.User(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.User {
|
|
return predicate.User(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.User {
|
|
return predicate.User(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.User {
|
|
return predicate.User(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.User {
|
|
return predicate.User(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// Age applies equality check predicate on the "age" field. It's identical to AgeEQ.
|
|
func Age(v int32) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldAge, v))
|
|
}
|
|
|
|
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
|
func Name(v string) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// Address applies equality check predicate on the "address" field. It's identical to AddressEQ.
|
|
func Address(v string) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldAddress, v))
|
|
}
|
|
|
|
// AgeEQ applies the EQ predicate on the "age" field.
|
|
func AgeEQ(v int32) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldAge, v))
|
|
}
|
|
|
|
// AgeNEQ applies the NEQ predicate on the "age" field.
|
|
func AgeNEQ(v int32) predicate.User {
|
|
return predicate.User(sql.FieldNEQ(FieldAge, v))
|
|
}
|
|
|
|
// AgeIn applies the In predicate on the "age" field.
|
|
func AgeIn(vs ...int32) predicate.User {
|
|
return predicate.User(sql.FieldIn(FieldAge, vs...))
|
|
}
|
|
|
|
// AgeNotIn applies the NotIn predicate on the "age" field.
|
|
func AgeNotIn(vs ...int32) predicate.User {
|
|
return predicate.User(sql.FieldNotIn(FieldAge, vs...))
|
|
}
|
|
|
|
// AgeGT applies the GT predicate on the "age" field.
|
|
func AgeGT(v int32) predicate.User {
|
|
return predicate.User(sql.FieldGT(FieldAge, v))
|
|
}
|
|
|
|
// AgeGTE applies the GTE predicate on the "age" field.
|
|
func AgeGTE(v int32) predicate.User {
|
|
return predicate.User(sql.FieldGTE(FieldAge, v))
|
|
}
|
|
|
|
// AgeLT applies the LT predicate on the "age" field.
|
|
func AgeLT(v int32) predicate.User {
|
|
return predicate.User(sql.FieldLT(FieldAge, v))
|
|
}
|
|
|
|
// AgeLTE applies the LTE predicate on the "age" field.
|
|
func AgeLTE(v int32) predicate.User {
|
|
return predicate.User(sql.FieldLTE(FieldAge, v))
|
|
}
|
|
|
|
// NameEQ applies the EQ predicate on the "name" field.
|
|
func NameEQ(v string) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// NameNEQ applies the NEQ predicate on the "name" field.
|
|
func NameNEQ(v string) predicate.User {
|
|
return predicate.User(sql.FieldNEQ(FieldName, v))
|
|
}
|
|
|
|
// NameIn applies the In predicate on the "name" field.
|
|
func NameIn(vs ...string) predicate.User {
|
|
return predicate.User(sql.FieldIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameNotIn applies the NotIn predicate on the "name" field.
|
|
func NameNotIn(vs ...string) predicate.User {
|
|
return predicate.User(sql.FieldNotIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameGT applies the GT predicate on the "name" field.
|
|
func NameGT(v string) predicate.User {
|
|
return predicate.User(sql.FieldGT(FieldName, v))
|
|
}
|
|
|
|
// NameGTE applies the GTE predicate on the "name" field.
|
|
func NameGTE(v string) predicate.User {
|
|
return predicate.User(sql.FieldGTE(FieldName, v))
|
|
}
|
|
|
|
// NameLT applies the LT predicate on the "name" field.
|
|
func NameLT(v string) predicate.User {
|
|
return predicate.User(sql.FieldLT(FieldName, v))
|
|
}
|
|
|
|
// NameLTE applies the LTE predicate on the "name" field.
|
|
func NameLTE(v string) predicate.User {
|
|
return predicate.User(sql.FieldLTE(FieldName, v))
|
|
}
|
|
|
|
// NameContains applies the Contains predicate on the "name" field.
|
|
func NameContains(v string) predicate.User {
|
|
return predicate.User(sql.FieldContains(FieldName, v))
|
|
}
|
|
|
|
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
|
func NameHasPrefix(v string) predicate.User {
|
|
return predicate.User(sql.FieldHasPrefix(FieldName, v))
|
|
}
|
|
|
|
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
|
func NameHasSuffix(v string) predicate.User {
|
|
return predicate.User(sql.FieldHasSuffix(FieldName, v))
|
|
}
|
|
|
|
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
|
func NameEqualFold(v string) predicate.User {
|
|
return predicate.User(sql.FieldEqualFold(FieldName, v))
|
|
}
|
|
|
|
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
|
func NameContainsFold(v string) predicate.User {
|
|
return predicate.User(sql.FieldContainsFold(FieldName, v))
|
|
}
|
|
|
|
// AddressEQ applies the EQ predicate on the "address" field.
|
|
func AddressEQ(v string) predicate.User {
|
|
return predicate.User(sql.FieldEQ(FieldAddress, v))
|
|
}
|
|
|
|
// AddressNEQ applies the NEQ predicate on the "address" field.
|
|
func AddressNEQ(v string) predicate.User {
|
|
return predicate.User(sql.FieldNEQ(FieldAddress, v))
|
|
}
|
|
|
|
// AddressIn applies the In predicate on the "address" field.
|
|
func AddressIn(vs ...string) predicate.User {
|
|
return predicate.User(sql.FieldIn(FieldAddress, vs...))
|
|
}
|
|
|
|
// AddressNotIn applies the NotIn predicate on the "address" field.
|
|
func AddressNotIn(vs ...string) predicate.User {
|
|
return predicate.User(sql.FieldNotIn(FieldAddress, vs...))
|
|
}
|
|
|
|
// AddressGT applies the GT predicate on the "address" field.
|
|
func AddressGT(v string) predicate.User {
|
|
return predicate.User(sql.FieldGT(FieldAddress, v))
|
|
}
|
|
|
|
// AddressGTE applies the GTE predicate on the "address" field.
|
|
func AddressGTE(v string) predicate.User {
|
|
return predicate.User(sql.FieldGTE(FieldAddress, v))
|
|
}
|
|
|
|
// AddressLT applies the LT predicate on the "address" field.
|
|
func AddressLT(v string) predicate.User {
|
|
return predicate.User(sql.FieldLT(FieldAddress, v))
|
|
}
|
|
|
|
// AddressLTE applies the LTE predicate on the "address" field.
|
|
func AddressLTE(v string) predicate.User {
|
|
return predicate.User(sql.FieldLTE(FieldAddress, v))
|
|
}
|
|
|
|
// AddressContains applies the Contains predicate on the "address" field.
|
|
func AddressContains(v string) predicate.User {
|
|
return predicate.User(sql.FieldContains(FieldAddress, v))
|
|
}
|
|
|
|
// AddressHasPrefix applies the HasPrefix predicate on the "address" field.
|
|
func AddressHasPrefix(v string) predicate.User {
|
|
return predicate.User(sql.FieldHasPrefix(FieldAddress, v))
|
|
}
|
|
|
|
// AddressHasSuffix applies the HasSuffix predicate on the "address" field.
|
|
func AddressHasSuffix(v string) predicate.User {
|
|
return predicate.User(sql.FieldHasSuffix(FieldAddress, v))
|
|
}
|
|
|
|
// AddressIsNil applies the IsNil predicate on the "address" field.
|
|
func AddressIsNil() predicate.User {
|
|
return predicate.User(sql.FieldIsNull(FieldAddress))
|
|
}
|
|
|
|
// AddressNotNil applies the NotNil predicate on the "address" field.
|
|
func AddressNotNil() predicate.User {
|
|
return predicate.User(sql.FieldNotNull(FieldAddress))
|
|
}
|
|
|
|
// AddressEqualFold applies the EqualFold predicate on the "address" field.
|
|
func AddressEqualFold(v string) predicate.User {
|
|
return predicate.User(sql.FieldEqualFold(FieldAddress, v))
|
|
}
|
|
|
|
// AddressContainsFold applies the ContainsFold predicate on the "address" field.
|
|
func AddressContainsFold(v string) predicate.User {
|
|
return predicate.User(sql.FieldContainsFold(FieldAddress, v))
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.User) predicate.User {
|
|
return predicate.User(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.User) predicate.User {
|
|
return predicate.User(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.User) predicate.User {
|
|
return predicate.User(sql.NotPredicates(p))
|
|
}
|