Documentation
¶
Index ¶
- Constants
- Variables
- func Admin(v bool) predicate.User
- func AdminEQ(v bool) predicate.User
- func AdminNEQ(v bool) predicate.User
- func And(predicates ...predicate.User) predicate.User
- func CreatedAt(v time.Time) predicate.User
- func CreatedAtEQ(v time.Time) predicate.User
- func CreatedAtGT(v time.Time) predicate.User
- func CreatedAtGTE(v time.Time) predicate.User
- func CreatedAtIn(vs ...time.Time) predicate.User
- func CreatedAtLT(v time.Time) predicate.User
- func CreatedAtLTE(v time.Time) predicate.User
- func CreatedAtNEQ(v time.Time) predicate.User
- func CreatedAtNotIn(vs ...time.Time) predicate.User
- func Email(v string) predicate.User
- func EmailContains(v string) predicate.User
- func EmailContainsFold(v string) predicate.User
- func EmailEQ(v string) predicate.User
- func EmailEqualFold(v string) predicate.User
- func EmailGT(v string) predicate.User
- func EmailGTE(v string) predicate.User
- func EmailHasPrefix(v string) predicate.User
- func EmailHasSuffix(v string) predicate.User
- func EmailIn(vs ...string) predicate.User
- func EmailLT(v string) predicate.User
- func EmailLTE(v string) predicate.User
- func EmailNEQ(v string) predicate.User
- func EmailNotIn(vs ...string) predicate.User
- func HasChatBans() predicate.User
- func HasChatBansIssued() predicate.User
- func HasChatBansIssuedWith(preds ...predicate.ChatBan) predicate.User
- func HasChatBansWith(preds ...predicate.ChatBan) predicate.User
- func HasChatMessages() predicate.User
- func HasChatMessagesWith(preds ...predicate.ChatMessage) predicate.User
- func HasOwnedChatRooms() predicate.User
- func HasOwnedChatRoomsWith(preds ...predicate.ChatRoom) predicate.User
- func HasOwner() predicate.User
- func HasOwnerWith(preds ...predicate.PasswordToken) predicate.User
- func HasPaymentCustomer() predicate.User
- func HasPaymentCustomerWith(preds ...predicate.PaymentCustomer) 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 PasswordLT(v string) predicate.User
- func PasswordLTE(v string) predicate.User
- func PasswordNEQ(v string) predicate.User
- func PasswordNotIn(vs ...string) predicate.User
- func ValidColumn(column string) bool
- func Verified(v bool) predicate.User
- func VerifiedEQ(v bool) predicate.User
- func VerifiedNEQ(v bool) predicate.User
- type OrderOption
- func ByAdmin(opts ...sql.OrderTermOption) OrderOption
- func ByChatBans(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByChatBansCount(opts ...sql.OrderTermOption) OrderOption
- func ByChatBansIssued(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByChatBansIssuedCount(opts ...sql.OrderTermOption) OrderOption
- func ByChatMessages(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByChatMessagesCount(opts ...sql.OrderTermOption) OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByEmail(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByOwnedChatRooms(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByOwnedChatRoomsCount(opts ...sql.OrderTermOption) OrderOption
- func ByOwner(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByOwnerCount(opts ...sql.OrderTermOption) OrderOption
- func ByPassword(opts ...sql.OrderTermOption) OrderOption
- func ByPaymentCustomerField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByVerified(opts ...sql.OrderTermOption) OrderOption
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 field in the database. FieldName = "name" // FieldEmail holds the string denoting the email field in the database. FieldEmail = "email" // FieldPassword holds the string denoting the password field in the database. FieldPassword = "password" // FieldVerified holds the string denoting the verified field in the database. FieldVerified = "verified" // FieldAdmin holds the string denoting the admin field in the database. FieldAdmin = "admin" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // EdgeOwner holds the string denoting the owner edge name in mutations. EdgeOwner = "owner" // EdgePaymentCustomer holds the string denoting the payment_customer edge name in mutations. EdgePaymentCustomer = "payment_customer" // EdgeOwnedChatRooms holds the string denoting the owned_chat_rooms edge name in mutations. EdgeOwnedChatRooms = "owned_chat_rooms" // EdgeChatMessages holds the string denoting the chat_messages edge name in mutations. EdgeChatMessages = "chat_messages" // EdgeChatBans holds the string denoting the chat_bans edge name in mutations. EdgeChatBans = "chat_bans" // EdgeChatBansIssued holds the string denoting the chat_bans_issued edge name in mutations. EdgeChatBansIssued = "chat_bans_issued" // Table holds the table name of the user in the database. Table = "users" // OwnerTable is the table that holds the owner relation/edge. OwnerTable = "password_tokens" // OwnerInverseTable is the table name for the PasswordToken entity. // It exists in this package in order to avoid circular dependency with the "passwordtoken" package. OwnerInverseTable = "password_tokens" // OwnerColumn is the table column denoting the owner relation/edge. OwnerColumn = "user_id" // PaymentCustomerTable is the table that holds the payment_customer relation/edge. PaymentCustomerTable = "users" // PaymentCustomerInverseTable is the table name for the PaymentCustomer entity. // It exists in this package in order to avoid circular dependency with the "paymentcustomer" package. PaymentCustomerInverseTable = "payment_customers" // PaymentCustomerColumn is the table column denoting the payment_customer relation/edge. PaymentCustomerColumn = "payment_customer_user" // OwnedChatRoomsTable is the table that holds the owned_chat_rooms relation/edge. OwnedChatRoomsTable = "chat_rooms" // OwnedChatRoomsInverseTable is the table name for the ChatRoom entity. // It exists in this package in order to avoid circular dependency with the "chatroom" package. OwnedChatRoomsInverseTable = "chat_rooms" // OwnedChatRoomsColumn is the table column denoting the owned_chat_rooms relation/edge. OwnedChatRoomsColumn = "user_owned_chat_rooms" // ChatMessagesTable is the table that holds the chat_messages relation/edge. ChatMessagesTable = "chat_messages" // ChatMessagesInverseTable is the table name for the ChatMessage entity. // It exists in this package in order to avoid circular dependency with the "chatmessage" package. ChatMessagesInverseTable = "chat_messages" // ChatMessagesColumn is the table column denoting the chat_messages relation/edge. ChatMessagesColumn = "user_chat_messages" // ChatBansTable is the table that holds the chat_bans relation/edge. ChatBansTable = "chat_bans" // ChatBansInverseTable is the table name for the ChatBan entity. // It exists in this package in order to avoid circular dependency with the "chatban" package. ChatBansInverseTable = "chat_bans" // ChatBansColumn is the table column denoting the chat_bans relation/edge. ChatBansColumn = "user_chat_bans" // ChatBansIssuedTable is the table that holds the chat_bans_issued relation/edge. ChatBansIssuedTable = "chat_bans" // ChatBansIssuedInverseTable is the table name for the ChatBan entity. // It exists in this package in order to avoid circular dependency with the "chatban" package. ChatBansIssuedInverseTable = "chat_bans" // ChatBansIssuedColumn is the table column denoting the chat_bans_issued relation/edge. ChatBansIssuedColumn = "user_chat_bans_issued" )
Variables ¶
var ( Hooks [1]ent.Hook // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error // EmailValidator is a validator for the "email" field. It is called by the builders before save. EmailValidator func(string) error // PasswordValidator is a validator for the "password" field. It is called by the builders before save. PasswordValidator func(string) error // DefaultVerified holds the default value on creation for the "verified" field. DefaultVerified bool // DefaultAdmin holds the default value on creation for the "admin" field. DefaultAdmin bool // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time )
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 _ "github.com/occult/pagode/ent/runtime"
var Columns = []string{ FieldID, FieldName, FieldEmail, FieldPassword, FieldVerified, FieldAdmin, FieldCreatedAt, }
Columns holds all SQL columns for user fields.
var ForeignKeys = []string{
"payment_customer_user",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "users" table and are not defined as standalone fields in the schema.
Functions ¶
func Admin ¶
Admin applies equality check predicate on the "admin" field. It's identical to AdminEQ.
func CreatedAt ¶
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func Email ¶
Email applies equality check predicate on the "email" field. It's identical to EmailEQ.
func EmailContains ¶
EmailContains applies the Contains predicate on the "email" field.
func EmailContainsFold ¶
EmailContainsFold applies the ContainsFold predicate on the "email" field.
func EmailEqualFold ¶
EmailEqualFold applies the EqualFold predicate on the "email" field.
func EmailHasPrefix ¶
EmailHasPrefix applies the HasPrefix predicate on the "email" field.
func EmailHasSuffix ¶
EmailHasSuffix applies the HasSuffix predicate on the "email" field.
func EmailNotIn ¶
EmailNotIn applies the NotIn predicate on the "email" field.
func HasChatBans ¶
HasChatBans applies the HasEdge predicate on the "chat_bans" edge.
func HasChatBansIssued ¶
HasChatBansIssued applies the HasEdge predicate on the "chat_bans_issued" edge.
func HasChatBansIssuedWith ¶
HasChatBansIssuedWith applies the HasEdge predicate on the "chat_bans_issued" edge with a given conditions (other predicates).
func HasChatBansWith ¶
HasChatBansWith applies the HasEdge predicate on the "chat_bans" edge with a given conditions (other predicates).
func HasChatMessages ¶
HasChatMessages applies the HasEdge predicate on the "chat_messages" edge.
func HasChatMessagesWith ¶
func HasChatMessagesWith(preds ...predicate.ChatMessage) predicate.User
HasChatMessagesWith applies the HasEdge predicate on the "chat_messages" edge with a given conditions (other predicates).
func HasOwnedChatRooms ¶
HasOwnedChatRooms applies the HasEdge predicate on the "owned_chat_rooms" edge.
func HasOwnedChatRoomsWith ¶
HasOwnedChatRoomsWith applies the HasEdge predicate on the "owned_chat_rooms" edge with a given conditions (other predicates).
func HasOwnerWith ¶
func HasOwnerWith(preds ...predicate.PasswordToken) predicate.User
HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).
func HasPaymentCustomer ¶
HasPaymentCustomer applies the HasEdge predicate on the "payment_customer" edge.
func HasPaymentCustomerWith ¶
func HasPaymentCustomerWith(preds ...predicate.PaymentCustomer) predicate.User
HasPaymentCustomerWith applies the HasEdge predicate on the "payment_customer" 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 ¶
Password applies equality check predicate on the "password" field. It's identical to PasswordEQ.
func PasswordContains ¶
PasswordContains applies the Contains predicate on the "password" field.
func PasswordContainsFold ¶
PasswordContainsFold applies the ContainsFold predicate on the "password" field.
func PasswordEQ ¶
PasswordEQ applies the EQ predicate on the "password" field.
func PasswordEqualFold ¶
PasswordEqualFold applies the EqualFold predicate on the "password" field.
func PasswordGT ¶
PasswordGT applies the GT predicate on the "password" field.
func PasswordGTE ¶
PasswordGTE applies the GTE predicate on the "password" field.
func PasswordHasPrefix ¶
PasswordHasPrefix applies the HasPrefix predicate on the "password" field.
func PasswordHasSuffix ¶
PasswordHasSuffix applies the HasSuffix predicate on the "password" field.
func PasswordIn ¶
PasswordIn applies the In predicate on the "password" field.
func PasswordLT ¶
PasswordLT applies the LT predicate on the "password" field.
func PasswordLTE ¶
PasswordLTE applies the LTE predicate on the "password" field.
func PasswordNEQ ¶
PasswordNEQ applies the NEQ predicate on the "password" field.
func PasswordNotIn ¶
PasswordNotIn applies the NotIn predicate on the "password" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func Verified ¶
Verified applies equality check predicate on the "verified" field. It's identical to VerifiedEQ.
func VerifiedEQ ¶
VerifiedEQ applies the EQ predicate on the "verified" field.
func VerifiedNEQ ¶
VerifiedNEQ applies the NEQ predicate on the "verified" field.
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the User queries.
func ByAdmin ¶
func ByAdmin(opts ...sql.OrderTermOption) OrderOption
ByAdmin orders the results by the admin field.
func ByChatBans ¶
func ByChatBans(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByChatBans orders the results by chat_bans terms.
func ByChatBansCount ¶
func ByChatBansCount(opts ...sql.OrderTermOption) OrderOption
ByChatBansCount orders the results by chat_bans count.
func ByChatBansIssued ¶
func ByChatBansIssued(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByChatBansIssued orders the results by chat_bans_issued terms.
func ByChatBansIssuedCount ¶
func ByChatBansIssuedCount(opts ...sql.OrderTermOption) OrderOption
ByChatBansIssuedCount orders the results by chat_bans_issued count.
func ByChatMessages ¶
func ByChatMessages(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByChatMessages orders the results by chat_messages terms.
func ByChatMessagesCount ¶
func ByChatMessagesCount(opts ...sql.OrderTermOption) OrderOption
ByChatMessagesCount orders the results by chat_messages count.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByEmail ¶
func ByEmail(opts ...sql.OrderTermOption) OrderOption
ByEmail orders the results by the email field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByOwnedChatRooms ¶
func ByOwnedChatRooms(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByOwnedChatRooms orders the results by owned_chat_rooms terms.
func ByOwnedChatRoomsCount ¶
func ByOwnedChatRoomsCount(opts ...sql.OrderTermOption) OrderOption
ByOwnedChatRoomsCount orders the results by owned_chat_rooms count.
func ByOwner ¶
func ByOwner(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByOwner orders the results by owner terms.
func ByOwnerCount ¶
func ByOwnerCount(opts ...sql.OrderTermOption) OrderOption
ByOwnerCount orders the results by owner count.
func ByPassword ¶
func ByPassword(opts ...sql.OrderTermOption) OrderOption
ByPassword orders the results by the password field.
func ByPaymentCustomerField ¶
func ByPaymentCustomerField(field string, opts ...sql.OrderTermOption) OrderOption
ByPaymentCustomerField orders the results by payment_customer field.
func ByVerified ¶
func ByVerified(opts ...sql.OrderTermOption) OrderOption
ByVerified orders the results by the verified field.