Documentation ¶
Index ¶
- Constants
- Variables
- 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 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
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" // FieldName holds the string denoting the name vertex property in the database. FieldName = "name" // EdgeCards holds the string denoting the cards edge name in mutations. EdgeCards = "cards" // 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 the 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" // FriendsTable is the table the holds the friends relation/edge. The primary key declared below. FriendsTable = "user_friends" // BestFriendTable is the table the 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 Columns = []string{ FieldID, FieldName, }
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 User type.
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 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 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.
Types ¶
This section is empty.