Documentation ¶
Index ¶
- Constants
- Variables
- func Age(v float64) predicate.User
- func AgeEQ(v float64) predicate.User
- func AgeGT(v float64) predicate.User
- func AgeGTE(v float64) predicate.User
- func AgeIn(vs ...float64) predicate.User
- func AgeLT(v float64) predicate.User
- func AgeLTE(v float64) predicate.User
- func AgeNEQ(v float64) predicate.User
- func AgeNotIn(vs ...float64) predicate.User
- func And(predicates ...predicate.User) predicate.User
- func HasCards() predicate.User
- func HasCardsWith(preds ...predicate.Card) 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 TagsIsNil() predicate.User
- func TagsNotNil() predicate.User
- func ValidColumn(column string) bool
Constants ¶
View Source
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" // FieldAge holds the string denoting the age field in the database. FieldAge = "age" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldTags holds the string denoting the tags field in the database. FieldTags = "tags" // EdgeCards holds the string denoting the cards edge name in mutations. EdgeCards = "cards" // 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 = "owner_id" )
Variables ¶
Columns holds all SQL columns for user fields.
Functions ¶
func HasCardsWith ¶
HasCardsWith applies the HasEdge predicate on the "cards" 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 TagsNotNil ¶
TagsNotNil applies the NotNil predicate on the "tags" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.