Documentation ¶
Index ¶
- Constants
- Variables
- func Active(v bool) predicate.User
- func ActiveEQ(v bool) predicate.User
- func ActiveNEQ(v bool) predicate.User
- func And(predicates ...predicate.User) predicate.User
- func HasBestFriend() predicate.User
- func HasBestFriendWith(preds ...predicate.User) predicate.User
- func HasCards() predicate.User
- func HasCardsWith(preds ...predicate.Card) predicate.User
- func HasFriends() predicate.User
- func HasFriendsWith(preds ...predicate.User) predicate.User
- func HasPets() predicate.User
- func HasPetsWith(preds ...predicate.Pet) predicate.User
- func ID(id int) predicate.User
- func IDEQ(id int) predicate.User
- func IDGT(id int) predicate.User
- func IDGTE(id int) predicate.User
- func IDIn(ids ...int) predicate.User
- func IDLT(id int) predicate.User
- func IDLTE(id int) predicate.User
- func IDNEQ(id int) predicate.User
- func IDNotIn(ids ...int) predicate.User
- func Name(v string) predicate.User
- func NameContains(v string) predicate.User
- func NameContainsFold(v string) predicate.User
- func NameEQ(v string) predicate.User
- func NameEqualFold(v string) predicate.User
- func NameGT(v string) predicate.User
- func NameGTE(v string) predicate.User
- func NameHasPrefix(v string) predicate.User
- func NameHasSuffix(v string) predicate.User
- func NameIn(vs ...string) predicate.User
- func NameLT(v string) predicate.User
- func NameLTE(v string) predicate.User
- func NameNEQ(v string) predicate.User
- func NameNotIn(vs ...string) predicate.User
- func Not(p predicate.User) predicate.User
- func Or(predicates ...predicate.User) predicate.User
- func Password(v string) predicate.User
- func PasswordContains(v string) predicate.User
- func PasswordContainsFold(v string) predicate.User
- func PasswordEQ(v string) predicate.User
- func PasswordEqualFold(v string) predicate.User
- func PasswordGT(v string) predicate.User
- func PasswordGTE(v string) predicate.User
- func PasswordHasPrefix(v string) predicate.User
- func PasswordHasSuffix(v string) predicate.User
- func PasswordIn(vs ...string) predicate.User
- func PasswordIsNil() predicate.User
- func PasswordLT(v string) predicate.User
- func PasswordLTE(v string) predicate.User
- func PasswordNEQ(v string) predicate.User
- func PasswordNotIn(vs ...string) predicate.User
- func PasswordNotNil() predicate.User
- func ValidColumn(column string) bool
- func Version(v int) predicate.User
- func VersionEQ(v int) predicate.User
- func VersionGT(v int) predicate.User
- func VersionGTE(v int) predicate.User
- func VersionIn(vs ...int) predicate.User
- func VersionLT(v int) predicate.User
- func VersionLTE(v int) predicate.User
- func VersionNEQ(v int) predicate.User
- func VersionNotIn(vs ...int) predicate.User
- func Worth(v uint) predicate.User
- func WorthEQ(v uint) predicate.User
- func WorthGT(v uint) predicate.User
- func WorthGTE(v uint) predicate.User
- func WorthIn(vs ...uint) predicate.User
- func WorthIsNil() predicate.User
- func WorthLT(v uint) predicate.User
- func WorthLTE(v uint) predicate.User
- func WorthNEQ(v uint) predicate.User
- func WorthNotIn(vs ...uint) predicate.User
- func WorthNotNil() predicate.User
Constants ¶
const ( // Label holds the string label denoting the user type in the database. Label = "user" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldVersion holds the string denoting the version field in the database. FieldVersion = "version" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldWorth holds the string denoting the worth field in the database. FieldWorth = "worth" // FieldPassword holds the string denoting the password field in the database. FieldPassword = "password" // FieldActive holds the string denoting the active field in the database. FieldActive = "active" // EdgeCards holds the string denoting the cards edge name in mutations. EdgeCards = "cards" // EdgePets holds the string denoting the pets edge name in mutations. EdgePets = "pets" // EdgeFriends holds the string denoting the friends edge name in mutations. EdgeFriends = "friends" // EdgeBestFriend holds the string denoting the best_friend edge name in mutations. EdgeBestFriend = "best_friend" // Table holds the table name of the user in the database. Table = "users" // CardsTable is the table that holds the cards relation/edge. CardsTable = "cards" // CardsInverseTable is the table name for the Card entity. // It exists in this package in order to avoid circular dependency with the "card" package. CardsInverseTable = "cards" // CardsColumn is the table column denoting the cards relation/edge. CardsColumn = "user_cards" // PetsTable is the table that holds the pets relation/edge. PetsTable = "pets" // PetsInverseTable is the table name for the Pet entity. // It exists in this package in order to avoid circular dependency with the "pet" package. PetsInverseTable = "pets" // PetsColumn is the table column denoting the pets relation/edge. PetsColumn = "user_pets" // FriendsTable is the table that holds the friends relation/edge. The primary key declared below. FriendsTable = "user_friends" // BestFriendTable is the table that holds the best_friend relation/edge. BestFriendTable = "users" // BestFriendColumn is the table column denoting the best_friend relation/edge. BestFriendColumn = "user_best_friend" )
Variables ¶
var ( Hooks [2]ent.Hook // DefaultVersion holds the default value on creation for the "version" field. DefaultVersion int // DefaultActive holds the default value on creation for the "active" field. DefaultActive bool )
Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:
import _ "entgo.io/ent/entc/integration/hooks/ent/runtime"
var Columns = []string{ FieldID, FieldVersion, FieldName, FieldWorth, FieldPassword, FieldActive, }
Columns holds all SQL columns for user fields.
var ForeignKeys = []string{
"user_best_friend",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "users" table and are not defined as standalone fields in the schema.
var ( // FriendsPrimaryKey and FriendsColumn2 are the table columns denoting the // primary key for the friends relation (M2M). FriendsPrimaryKey = []string{"user_id", "friend_id"} )
Functions ¶
func Active ¶ added in v0.11.5
Active applies equality check predicate on the "active" field. It's identical to ActiveEQ.
func HasBestFriend ¶
HasBestFriend applies the HasEdge predicate on the "best_friend" edge.
func HasBestFriendWith ¶
HasBestFriendWith applies the HasEdge predicate on the "best_friend" edge with a given conditions (other predicates).
func HasCardsWith ¶
HasCardsWith applies the HasEdge predicate on the "cards" edge with a given conditions (other predicates).
func HasFriends ¶
HasFriends applies the HasEdge predicate on the "friends" edge.
func HasFriendsWith ¶
HasFriendsWith applies the HasEdge predicate on the "friends" edge with a given conditions (other predicates).
func HasPetsWith ¶ added in v0.11.5
HasPetsWith applies the HasEdge predicate on the "pets" edge with a given conditions (other predicates).
func NameContains ¶
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEqualFold ¶
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameHasPrefix ¶
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func Password ¶ added in v0.11.0
Password applies equality check predicate on the "password" field. It's identical to PasswordEQ.
func PasswordContains ¶ added in v0.11.0
PasswordContains applies the Contains predicate on the "password" field.
func PasswordContainsFold ¶ added in v0.11.0
PasswordContainsFold applies the ContainsFold predicate on the "password" field.
func PasswordEQ ¶ added in v0.11.0
PasswordEQ applies the EQ predicate on the "password" field.
func PasswordEqualFold ¶ added in v0.11.0
PasswordEqualFold applies the EqualFold predicate on the "password" field.
func PasswordGT ¶ added in v0.11.0
PasswordGT applies the GT predicate on the "password" field.
func PasswordGTE ¶ added in v0.11.0
PasswordGTE applies the GTE predicate on the "password" field.
func PasswordHasPrefix ¶ added in v0.11.0
PasswordHasPrefix applies the HasPrefix predicate on the "password" field.
func PasswordHasSuffix ¶ added in v0.11.0
PasswordHasSuffix applies the HasSuffix predicate on the "password" field.
func PasswordIn ¶ added in v0.11.0
PasswordIn applies the In predicate on the "password" field.
func PasswordIsNil ¶ added in v0.11.0
PasswordIsNil applies the IsNil predicate on the "password" field.
func PasswordLT ¶ added in v0.11.0
PasswordLT applies the LT predicate on the "password" field.
func PasswordLTE ¶ added in v0.11.0
PasswordLTE applies the LTE predicate on the "password" field.
func PasswordNEQ ¶ added in v0.11.0
PasswordNEQ applies the NEQ predicate on the "password" field.
func PasswordNotIn ¶ added in v0.11.0
PasswordNotIn applies the NotIn predicate on the "password" field.
func PasswordNotNil ¶ added in v0.11.0
PasswordNotNil applies the NotNil predicate on the "password" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func Version ¶
Version applies equality check predicate on the "version" field. It's identical to VersionEQ.
func VersionGTE ¶
VersionGTE applies the GTE predicate on the "version" field.
func VersionLTE ¶
VersionLTE applies the LTE predicate on the "version" field.
func VersionNEQ ¶
VersionNEQ applies the NEQ predicate on the "version" field.
func VersionNotIn ¶
VersionNotIn applies the NotIn predicate on the "version" field.
func Worth ¶
Worth applies equality check predicate on the "worth" field. It's identical to WorthEQ.
func WorthIsNil ¶
WorthIsNil applies the IsNil predicate on the "worth" field.
func WorthNotIn ¶
WorthNotIn applies the NotIn predicate on the "worth" field.
func WorthNotNil ¶
WorthNotNil applies the NotNil predicate on the "worth" field.
Types ¶
This section is empty.