// Code generated by ent, DO NOT EDIT. package adminrole import ( "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" ) const ( // Label holds the string label denoting the adminrole type in the database. Label = "admin_role" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldAdminID holds the string denoting the admin_id field in the database. FieldAdminID = "admin_id" // FieldRoleID holds the string denoting the role_id field in the database. FieldRoleID = "role_id" // EdgeAdmin holds the string denoting the admin edge name in mutations. EdgeAdmin = "admin" // EdgeRole holds the string denoting the role edge name in mutations. EdgeRole = "role" // Table holds the table name of the adminrole in the database. Table = "admin_roles" // AdminTable is the table that holds the admin relation/edge. AdminTable = "admin_roles" // AdminInverseTable is the table name for the Admin entity. // It exists in this package in order to avoid circular dependency with the "admin" package. AdminInverseTable = "admins" // AdminColumn is the table column denoting the admin relation/edge. AdminColumn = "admin_id" // RoleTable is the table that holds the role relation/edge. RoleTable = "admin_roles" // RoleInverseTable is the table name for the Role entity. // It exists in this package in order to avoid circular dependency with the "role" package. RoleInverseTable = "roles" // RoleColumn is the table column denoting the role relation/edge. RoleColumn = "role_id" ) // Columns holds all SQL columns for adminrole fields. var Columns = []string{ FieldID, FieldAdminID, FieldRoleID, } // ValidColumn reports if the column name is valid (part of the table columns). func ValidColumn(column string) bool { for i := range Columns { if column == Columns[i] { return true } } return false } // OrderOption defines the ordering options for the AdminRole queries. type OrderOption func(*sql.Selector) // ByID orders the results by the id field. func ByID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldID, opts...).ToFunc() } // ByAdminID orders the results by the admin_id field. func ByAdminID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldAdminID, opts...).ToFunc() } // ByRoleID orders the results by the role_id field. func ByRoleID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldRoleID, opts...).ToFunc() } // ByAdminField orders the results by admin field. func ByAdminField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newAdminStep(), sql.OrderByField(field, opts...)) } } // ByRoleField orders the results by role field. func ByRoleField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newRoleStep(), sql.OrderByField(field, opts...)) } } func newAdminStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(AdminInverseTable, FieldID), sqlgraph.Edge(sqlgraph.M2O, false, AdminTable, AdminColumn), ) } func newRoleStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(RoleInverseTable, FieldID), sqlgraph.Edge(sqlgraph.M2O, false, RoleTable, RoleColumn), ) }